logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

StaticRetrieval.as (226B)


  1. // input: []
  2. // output: 1
  3. package {
  4. public class StaticRetrieval {
  5. public static var v:int;
  6. public static function main():int{
  7. if (v) {
  8. return 0;
  9. } else {
  10. return 1;
  11. }
  12. }
  13. }
  14. }