logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

NeOperator.as (405B)


  1. // input: []
  2. // output: 123
  3. package {
  4. public class NeOperator {
  5. public static function main(): int {
  6. var res:int = 0;
  7. if (1 != 2) {
  8. res += 3;
  9. } else {
  10. res += 4;
  11. }
  12. if (2 != 2) {
  13. res += 10;
  14. } else {
  15. res += 20;
  16. }
  17. if (9 == 9) {
  18. res += 100;
  19. }
  20. return res;
  21. }
  22. }
  23. }