- totalement remanié la structure de mon dépôt, cela commençait à être trop le foutoire ;-(

This commit is contained in:
Christian Zufferey
2018-11-18 10:36:16 +01:00
parent 3bfc2949d2
commit b2b632a6cd
61 changed files with 56 additions and 1214 deletions

11
File/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")