Files
mir_server/sdk/lua-5.1/test/printf.lua

8 lines
169 B
Lua
Raw Normal View History

2025-01-09 17:45:40 +08:00
-- 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())