diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-06-28 07:42:46 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-06-28 07:42:46 +0200 |
commit | c7298561c199255facc562402700322360408179 (patch) | |
tree | bcc1d98167375f344e8a24f870355085e61a39a6 /tests/macros | |
parent | cecce80d428f7cbe0089da0feca83c33f745a58e (diff) | |
download | Nim-c7298561c199255facc562402700322360408179.tar.gz |
system.nim: remove deprecated symbols
Diffstat (limited to 'tests/macros')
-rw-r--r-- | tests/macros/tprintf.nim | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/macros/tprintf.nim b/tests/macros/tprintf.nim deleted file mode 100644 index 94cbfbc2b..000000000 --- a/tests/macros/tprintf.nim +++ /dev/null @@ -1,16 +0,0 @@ -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 - - |