first commit

This commit is contained in:
Christian Zufferey
2018-07-22 12:43:16 +02:00
parent 0fa4e7727e
commit 3149e7ecc8
54 changed files with 3043 additions and 0 deletions

11
code2file.lua Normal file
View File

@@ -0,0 +1,11 @@
-- écriture d'un script dans un fichier et l'exécute
-- zf180717.1517
jj = [[
print("toto")
print("tutu")
]]
file.open("toto1518.lua","w")
file.write(jj)
file.close()
dofile("toto1518.lua")