shithub: sox

ref: 494f7e042774e19e456d9466e7c2f2b6ca59cd84
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())