mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
10 lines
160 B
ActionScript
10 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;
|
|
}
|
|
}
|
|
}
|