summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/scenarios/test.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/scenarios/test.txt')
-rw-r--r--src/CBot/tests/scenarios/test.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/CBot/tests/scenarios/test.txt b/src/CBot/tests/scenarios/test.txt
new file mode 100644
index 0000000..0693994
--- /dev/null
+++ b/src/CBot/tests/scenarios/test.txt
@@ -0,0 +1,8 @@
+extern public void x()
+{
+ float a= 1, b = 2;
+ a = b * ( 2 + 2 );
+ print (a);
+ a += 4;
+ print (a);
+}