summary refs log tree commit diff stats
path: root/tests/run/tlet.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/tlet.nim')
-rw-r--r--tests/run/tlet.nim19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/run/tlet.nim b/tests/run/tlet.nim
deleted file mode 100644
index ba355c5d8..000000000
--- a/tests/run/tlet.nim
+++ /dev/null
@@ -1,19 +0,0 @@
-discard """
-  output: '''Very funny, your name is name.
-nameabc'''
-"""
-
-proc main =
-  let name = "name"
-  if name == "":
-    echo("Poor soul, you lost your name?")
-  elif name == "name":
-    echo("Very funny, your name is name.")
-  else:
-    Echo("Hi, ", name, "!")
-    
-  let (x, y) = ("abc", name)
-  echo y, x
-
-main()
-