1
0
forked from Mirror/wren

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

View File

@ -0,0 +1 @@
IO.print("a" + "b") // expect: ab

View File

@ -0,0 +1 @@
IO.print("a" + 123) // expect runtime error: Right operand must be a string.