Main.hx 188 B

12345678910
  1. class Main {
  2. static function main() {
  3. var c = Std.int(Math.random() - 0.5); //0
  4. Sys.stderr().writeString(switch (c) {
  5. case 1: '1';
  6. default: 'analyzer removed this ';
  7. });
  8. }
  9. }