shithub: sox

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