shithub: sox

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