1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00
youtube-dl/test/swftests/EqualsOperator.as

11 lines
147 B
ActionScript
Raw Permalink Normal View History

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