summary refs log tree commit diff stats
path: root/tests/caas/main.nim
diff options
context:
space:
mode:
authorZahary Karadjov <zahary@gmail.com>2013-05-04 01:04:02 +0300
committerZahary Karadjov <zahary@gmail.com>2013-05-04 01:04:28 +0300
commita8e12afc76125fd7931e08d56d17c7b40c6e2065 (patch)
tree989872b74158f24507a4f3d6136fd82bd33cbba4 /tests/caas/main.nim
parentac9db5d6840c88cd89e4df5a47d1bdeedb07d170 (diff)
downloadNim-a8e12afc76125fd7931e08d56d17c7b40c6e2065.tar.gz
test-runner for caas multi-step tests
Diffstat (limited to 'tests/caas/main.nim')
-rw-r--r--tests/caas/main.nim7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/caas/main.nim b/tests/caas/main.nim
new file mode 100644
index 000000000..fafeff93b
--- /dev/null
+++ b/tests/caas/main.nim
@@ -0,0 +1,7 @@
+import imported, strutils
+
+proc main =
+  var t1 = "text"
+  var t2 = t1.toUpper
+  echo(t1 +++ t2)
+