1
0
mirror of https://github.com/ytdl-org/ytdl-nightly.git synced 2025-02-11 08:50:38 +01:00
2014-11-17 03:53:32 +01:00

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