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

12
exercises/ch04/ex4_1.lua Normal file
View File

@@ -0,0 +1,12 @@
local str1 = "<![CDATA[\n Hello World\n]]>"
print(str1)
print("\n------------------------------\n")
local str2 = [=[
<![CDATA[
Hello World
]]>]=]
print(str2)