mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
16 lines
226 B
ActionScript
16 lines
226 B
ActionScript
// input: []
|
|
// output: 1
|
|
|
|
package {
|
|
public class StaticRetrieval {
|
|
public static var v:int;
|
|
|
|
public static function main():int{
|
|
if (v) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
}
|