logo

youtube-dl

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

ConstantInt.as (165B)


  1. // input: []
  2. // output: 2
  3. package {
  4. public class ConstantInt {
  5. private static const x:int = 2;
  6. public static function main():int{
  7. return x;
  8. }
  9. }
  10. }