about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_precedence_fix.txt
blob: 776aabe77a4341370055ff9cf062c071d2528ae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
x : 10;
y : 3;
result : x - y;
..out result;

z : -5;
..out z;

mixed : x * -y;
..out mixed;