shithub: sox

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