shithub: sox

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