mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
11 lines
147 B
ActionScript
11 lines
147 B
ActionScript
// input: []
|
|
// output: false
|
|
|
|
package {
|
|
public class EqualsOperator {
|
|
public static function main():Boolean{
|
|
return 1 == 2;
|
|
}
|
|
}
|
|
}
|