Your IP : 216.73.216.34


Current Path : /usr/share/doc/lua50/examples/
Upload File :
Current File : //usr/share/doc/lua50/examples/printf.lua

-- an implementation of printf

function printf(...)
 io.write(string.format(unpack(arg)))
end

printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())