youtube-dl

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

DictCall.as (160B)


      1 // input: [{"x": 1, "y": 2}]
      2 // output: 3
      3 
      4 package {
      5 public class DictCall {
      6     public static function main(d:Object):int{
      7         return d.x + d.y;
      8     }
      9 }
     10 }