Uncommented things in func section test

This commit is contained in:
Sasha Koshka 2022-09-01 20:54:10 -04:00
parent fcfa672652
commit d9e58cee0c

View File

@ -39,11 +39,9 @@ func ro eMath
-- y -- y
set z [+ [* 0392 00] 98 x [/ 9832 y] 930] set z [+ [* 0392 00] 98 x [/ 9832 y] 930]
# TODO: need tokens ~=
! true ! true
~ 0b01 ~ 0b01
# ~= x ~= x
% 873 32 % 873 32
= 5 5 = 5 5
@ -52,17 +50,17 @@ func ro eMath
<= 4 98 <= 4 98
< 4 98 < 4 98
<< 0x0F 4 << 0x0F 4
# <<= x 4 <<= x 4
>= 98 4 >= 98 4
> 98 4 > 98 4
>> 0xF0 4 >> 0xF0 4
# >>= x 4 >>= x 4
| 0b01 0b10 | 0b01 0b10
# |= x 0b10 |= x 0b10
& 0b110 0b011 & 0b110 0b011
# &= x 0b011 &= x 0b011
&& true true && true true
|| true false || true false