shithub: sox

ref: 5d6d8c3f66bb6aad2da4529879a8effbc2fe9efa
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())