This repository has been archived on 2025-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
youtube-dl/test/swftests/DictCall.as
2014-11-17 03:53:32 +01:00

11 lines
160 B
ActionScript

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