mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-12-22 07:43:08 +00:00
10 lines
147 B
ActionScript
10 lines
147 B
ActionScript
// input: []
|
|
// output: false
|
|
|
|
package {
|
|
public class EqualsOperator {
|
|
public static function main():Boolean{
|
|
return 1 == 2;
|
|
}
|
|
}
|
|
}
|