youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

LocalVars.as (226B)


      1 // input: [1, 2]
      2 // output: 3
      3 
      4 package {
      5 public class LocalVars {
      6     public static function main(a:int, b:int):int{
      7         var c:int = a + b + b;
      8         var d:int = c - b;
      9         var e:int = d;
     10         return e;
     11     }
     12 }
     13 }