diff options
author | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 01:04:02 +0300 |
---|---|---|
committer | Zahary Karadjov <zahary@gmail.com> | 2013-05-04 01:04:28 +0300 |
commit | a8e12afc76125fd7931e08d56d17c7b40c6e2065 (patch) | |
tree | 989872b74158f24507a4f3d6136fd82bd33cbba4 /tests/caas/main.nim | |
parent | ac9db5d6840c88cd89e4df5a47d1bdeedb07d170 (diff) | |
download | Nim-a8e12afc76125fd7931e08d56d17c7b40c6e2065.tar.gz |
test-runner for caas multi-step tests
Diffstat (limited to 'tests/caas/main.nim')
-rw-r--r-- | tests/caas/main.nim | 7 |
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) + |