mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
160 B
ActionScript
11 lines
160 B
ActionScript
10 years ago
|
// input: [{"x": 1, "y": 2}]
|
||
|
// output: 3
|
||
|
|
||
|
package {
|
||
|
public class DictCall {
|
||
|
public static function main(d:Object):int{
|
||
10 years ago
|
return d.x + d.y;
|
||
10 years ago
|
}
|
||
|
}
|
||
|
}
|