mirror of
https://code.hackerspace.pl/q3k/youtube-dl
synced 2025-03-16 11:43:02 +00:00
11 lines
160 B
ActionScript
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;
|
|
}
|
|
}
|
|
}
|