shithub: sox

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