Test string concatenation.

This commit is contained in:
Bob Nystrom
2014-04-08 21:17:49 -07:00
parent dca58ff747
commit 3a55acfe1a
3 changed files with 3 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
IO.print("a" + "b") // expect: ab
@@ -0,0 +1 @@
IO.print("a" + 123) // expect runtime error: Right operand must be a string.