Completing the Language
compiler-ge-le

Add >= and <= to the compiler (i64.ge_s, i64.le_s) and VM. Agreement tests:

    check_both("5 >= 5", 1);
    check_both("5 >= 6", 0);
    check_both("3 <= 3", 1);
    check_both("3 <= 2", 0);

### Logical operators