shithub: sox

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