jsx
Version:
a faster, safer, easier JavaScript
27 lines (26 loc) • 349 B
JSX
/*EXPECTED
true
true
true
true
true
true
false
true
true
*/
class _Main {
static function main(args : string[]) : void {
var s1 = "abc", s2 = "abc";
var S1 = new String(s1), S2 = new String(s2);
log S1 <= S2;
log s1 <= S2;
log S1 <= s2;
log S1 >= S2;
log s1 >= S2;
log S1 >= s2;
log S1 == S2;
log s1 == S2;
log S1 == s2;
}
}