shithub: sox

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