shithub: sox

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