diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_precedence_fix.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_precedence_fix.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_precedence_fix.txt b/js/scripting-lang/scratch_tests/test_precedence_fix.txt new file mode 100644 index 0000000..776aabe --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_precedence_fix.txt @@ -0,0 +1,10 @@ +x : 10; +y : 3; +result : x - y; +..out result; + +z : -5; +..out z; + +mixed : x * -y; +..out mixed; \ No newline at end of file |