1
0
Fork 0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2024-12-22 15:57:23 +00:00
yt-dlc/test/swftests/DictCall.as

11 lines
160 B
ActionScript
Raw Normal View History

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