1
0
Fork 0

[cleanup] Mark unused files

This commit is contained in:
pukkandan 2021-06-05 21:25:06 +05:30
commit 9d83ad93d0
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
30 changed files with 5 additions and 1 deletions

View file

@ -1,24 +0,0 @@
// 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;
}
}
}