1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00
yt-dlp/test/swftests/DictCall.as

11 lines
160 B
ActionScript
Raw Normal View History

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