shithub: sox

ref: 7aff811399c8b10a08ca9d95d5a9ce9bf2bfb1a6
dir: /src/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())