1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-05-28 07:54:54 -05:00
2021-06-06 00:59:04 +05:30

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;
}
}
}