summary refs log tree commit diff stats
path: root/tests/run/tformat.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tformat.nim')
-rwxr-xr-xtests/run/tformat.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/run/tformat.nim b/tests/run/tformat.nim
deleted file mode 100755
index 92c0c16f5..000000000
--- a/tests/run/tformat.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-  file: "tformat.nim"
-  output: "Hi Andreas! How do you feel, Rumpf?"
-"""
-# Tests the new format proc (including the & and &= operators)

-

-import strutils

-

-echo("Hi $1! How do you feel, $2?\n" % ["Andreas", "Rumpf"])

-#OUT Hi Andreas! How do you feel, Rumpf?

-
-