1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-01-15 14:57:36 +01:00
2021-06-06 00:59:04 +05:30

11 lines
147 B
ActionScript

// input: []
// output: false
package {
public class EqualsOperator {
public static function main():Boolean{
return 1 == 2;
}
}
}