printf.lua 169 B

1234567
  1. -- an implementation of printf
  2. function printf(...)
  3. io.write(string.format(...))
  4. end
  5. printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())