8 lines
169 B
Lua
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())
|