mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
17 lines
280 B
Nim
Executable File
17 lines
280 B
Nim
Executable File
discard """
|
|
file: "tprintf.nim"
|
|
output: "Andreas Rumpf"
|
|
"""
|
|
# Test a printf proc
|
|
|
|
proc printf(file: TFile, args: openarray[string]) =
|
|
var i = 0
|
|
while i < args.len:
|
|
write(file, args[i])
|
|
inc(i)
|
|
|
|
printf(stdout, ["Andreas ", "Rumpf\n"])
|
|
#OUT Andreas Rumpf
|
|
|
|
|