OLD | NEW |
(Empty) | |
| 1 4 - 2; |
| 2 4 + 2; |
| 3 4 * 2; |
| 4 4 / 2; |
| 5 4 % 2; |
| 6 4 == 2; |
| 7 4 != 2; |
| 8 4 < 2; |
| 9 4 <= 2; |
| 10 4 > 2; |
| 11 4 >= 2; |
| 12 true and false |
| 13 false or true |
| 14 not true |
| 15 |
| 16 ---------------------------------------------------- |
| 17 |
| 18 [ |
| 19 "4 ", ["operator", "-"], " 2", ["punctuation", ";"], |
| 20 "\r\n4 ", ["operator", "+"], " 2", ["punctuation", ";"], |
| 21 "\r\n4 ", ["operator", "*"], " 2", ["punctuation", ";"], |
| 22 "\r\n4 ", ["operator", "/"], " 2", ["punctuation", ";"], |
| 23 "\r\n4 ", ["operator", "%"], " 2", ["punctuation", ";"], |
| 24 "\r\n4 ", ["operator", "=="], " 2", ["punctuation", ";"], |
| 25 "\r\n4 ", ["operator", "!="], " 2", ["punctuation", ";"], |
| 26 "\r\n4 ", ["operator", "<"], " 2", ["punctuation", ";"], |
| 27 "\r\n4 ", ["operator", "<="], " 2", ["punctuation", ";"], |
| 28 "\r\n4 ", ["operator", ">"], " 2", ["punctuation", ";"], |
| 29 "\r\n4 ", ["operator", ">="], " 2", ["punctuation", ";"], |
| 30 |
| 31 ["boolean", "true"], ["operator", "and"], ["boolean", "false"], |
| 32 ["boolean", "false"], ["operator", "or"], ["boolean", "true"], |
| 33 ["operator", "not"], ["boolean", "true"] |
| 34 ] |
| 35 |
| 36 ---------------------------------------------------- |
| 37 |
| 38 Checks for operators. |
OLD | NEW |