shithub: sox

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