shithub: sox

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