summary refs log tree commit diff stats
path: root/tests/ic/thallo.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ic/thallo.nim')
-rw-r--r--tests/ic/thallo.nim28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/ic/thallo.nim b/tests/ic/thallo.nim
deleted file mode 100644
index 7ead7c8ba..000000000
--- a/tests/ic/thallo.nim
+++ /dev/null
@@ -1,28 +0,0 @@
-discard """
-  output: "Hello World"
-"""
-
-const str = "Hello World"
-echo str
-
-# Splitters are done with this special comment:
-
-#!EDIT!#
-
-discard """
-  output: "Hello World B"
-"""
-
-const str = "Hello World"
-echo str, " B"
-
-#!EDIT!#
-
-discard """
-  output: "Hello World C"
-"""
-
-const str = "Hello World"
-var x = 7
-if 3+4 == x:
-  echo str, " C"