Files
mir_server/sdk/lua-5.1/test/printf.lua
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

8 lines
169 B
Lua

-- 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())