mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-10-31 22:44:32 +01: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;
|
|
}
|
|
}
|
|
}
|