shithub: sox

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