diff --git a/unittests/tests/objects/string/operands-001.sfu b/unittests/tests/objects/string/operands-001.sfu new file mode 100644 index 0000000..52deb63 --- /dev/null +++ b/unittests/tests/objects/string/operands-001.sfu @@ -0,0 +1,24 @@ +title: string operands +author: Joshua Thijssen + +********** +import io; + +io.println("foo" + "bar"); +io.println("bar" + "foo"); + +a = "foo"; +b = "bar"; +c = a + b + b; +d = c + c; +io.println(a); +io.println(b); +io.println(c); +io.println(d); +========= +foobar +barfoo +foo +bar +foobar +foobarbarfoobarbar