You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
147 B

  1. // input: []
  2. // output: false
  3. package {
  4. public class EqualsOperator {
  5. public static function main():Boolean{
  6. return 1 == 2;
  7. }
  8. }
  9. }