summary refs log tree commit diff stats
path: root/tests/tprintf.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tprintf.nim')
-rwxr-xr-xtests/tprintf.nim10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/tprintf.nim b/tests/tprintf.nim
deleted file mode 100755
index 14687a937..000000000
--- a/tests/tprintf.nim
+++ /dev/null
@@ -1,10 +0,0 @@
-# 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