2
0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2025-08-30 06:52:48 -06:00

11 lines
160 B
ActionScript
Raw Normal View History

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