shithub: sox

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