lua502/test/printf.lua
2020-02-25 05:09:07 +02:00

7 lines
177 B
Lua

-- an implementation of printf
function printf(...)
io.write(string.format(unpack(arg)))
end
printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())