shithub: sox

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