1
0
mirror of https://github.com/l1ving/youtube-dl synced 2024-10-03 19:27:21 +08:00
youtube-dl/test/swftests/EqualsOperator.as

11 lines
147 B
ActionScript
Raw Normal View History

2014-11-17 11:27:51 +08:00
// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}