about summary refs log tree commit diff stats
path: root/js/scripting-lang/scratch_tests/test_unary_minus.txt
blob: 18f6a298217091076e001b560077ed82f9e5423e (plain) (blame)
1
2
3
4
5
6
7
8
/* Test unary minus parsing */
x : -5;
y : -3.14;
z : -0;

..out x;
..out y;
..out z;