mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
148 B
Text
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);
|
|
|