polserver/testsuite/escript/misc/ts.src
2015-12-19 02:31:08 +01:00

11 lines
148 B
Text

var v;
print("Testing arithmetic operators.");
print(5+7);
print(7-5);
print(7*5);
print(7/5);
print(7+"hello");
v := 7+"hello" - "7h";
print(v);