Currently, violations of Source §1 typing are not leading to error messages. Examples: ```javascript > "a" < 1; false > true && 1; // this one is particularly tricky 1 > - false; 0 > - true; -1 > !0; true > -"asdf"; NaN > 1 * "asdf"; NaN ```