添加lua+luatinker

This commit is contained in:
2025-09-01 22:48:13 +08:00
parent 12c51b5ddb
commit 1fb319f0e8
108 changed files with 30276 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
-- an implementation of printf
function printf(...)
io.write(string.format(...))
end
printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())