shithub: sox

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