Add >= and <= to the compiler (i64.ge_s, i64.le_s) and VM. Agreement tests:
>=
<=
i64.ge_s
i64.le_s
check_both("5 >= 5", 1); check_both("5 >= 6", 0); check_both("3 <= 3", 1); check_both("3 <= 2", 0);
### Logical operators