1
0
mirror of https://github.com/l1ving/youtube-dl synced 2024-10-03 23:27:21 +08:00
youtube-dl/test/swftests/DictCall.as

11 lines
160 B
ActionScript
Raw Normal View History

2014-11-17 10:46:23 +08:00
// input: [{"x": 1, "y": 2}]
// output: 3
package {
public class DictCall {
public static function main(d:Object):int{
2014-11-17 10:53:32 +08:00
return d.x + d.y;
2014-11-17 10:46:23 +08:00
}
}
}