diff options
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) + |