1
0
mirror of https://github.com/ytdl-org/ytdl-nightly.git synced 2025-02-03 16:07:34 +01:00
2014-11-17 04:27:51 +01:00

11 lines
147 B
ActionScript

// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}