diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_working_cases.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_working_cases.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_working_cases.txt b/js/scripting-lang/scratch_tests/test_working_cases.txt new file mode 100644 index 0000000..80c4b63 --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_working_cases.txt @@ -0,0 +1,11 @@ +/* Test working precedence cases */ + +test1 : 5 + 3; +test2 : -5; +test3 : 5 * -3; +test4 : (-5) + 3; + +..out test1; +..out test2; +..out test3; +..out test4; \ No newline at end of file |