This commit is contained in:
whottgen
2004-09-29 19:32:21 +00:00
parent ae9bf0b4fb
commit 59e2a2d342
20 changed files with 102 additions and 62 deletions

View File

@ -0,0 +1,6 @@
function f (i)
io.write("[lua] output from lua\n")
io.write("[lua] ", i, "\n")
io.write("[lua] entrypoint: ", config["entrypoint"], "\n")
return 1, string.upper(i)
end