File: printf.lua

package info (click to toggle)
lua50 5.0.3-8.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,228 kB
  • sloc: ansic: 12,032; makefile: 310; sh: 20
file content (7 lines) | stat: -rw-r--r-- 177 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
-- 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())