mirror of https://github.com/blackjack4494/yt-dlc
[swfinterp] Interpret yet more opcodes
parent
0ab1ca5501
commit
e983cf5277
@ -0,0 +1,24 @@
|
|||||||
|
// 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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue