started ch05

This commit is contained in:
2026-02-22 17:52:08 +02:00
parent 2d9b2318a9
commit 53d5f2878c
3 changed files with 71 additions and 0 deletions

3
exercises/ch05/ex5_1.lua Normal file
View File

@@ -0,0 +1,3 @@
local sunday = "monday"; monday = "sunday"
local t = {sunday = "monday", [sunday] = monday}
print(t.sunday, t[sunday], t[t.sunday])