shithub: sox

ref: 7caf0e1b5286fc68229f60749d12e6ad28b3e01c
dir: /lua/test/printf.lua/

View raw version
-- 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())