shithub: sox

ref: 5ee0d9a4171ae5b6873a40416a8148a07a9a6e70
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())