First commit

This commit is contained in:
2026-02-19 18:51:17 +02:00
commit 2d9b2318a9
16 changed files with 358 additions and 0 deletions

7
exercises/ch04/ex4_7.lua Normal file
View File

@@ -0,0 +1,7 @@
local function ispali(str)
str = str:lower()
return str == str:reverse()
end
print(ispali("step on no pets"))
print(ispali("banana"))