You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
160 B

  1. // input: [{"x": 1, "y": 2}]
  2. // output: 3
  3. package {
  4. public class DictCall {
  5. public static function main(d:Object):int{
  6. return d.x + d.y;
  7. }
  8. }
  9. }