This repository has been archived on 2025-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
youtube-dl/test/swftests/NeOperator.as

25 lines
405 B
ActionScript
Raw Normal View History

2014-11-17 04:00:31 +01:00
// input: []
// output: 123
package {
public class NeOperator {
public static function main(): int {
var res:int = 0;
if (1 != 2) {
res += 3;
} else {
res += 4;
}
if (2 != 2) {
res += 10;
} else {
res += 20;
}
if (9 == 9) {
res += 100;
}
return res;
}
}
}