Rapsys Git
/
youtubedl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
debian/changelog: Annotate with bug being closed.
[youtubedl]
/
test
/
swftests
/
DictCall.as
1
// input: [{"x": 1, "y": 2}]
2
// output: 3
3
4
package {
5
public class DictCall {
6
public static function main(d:Object):int{
7
return d.x + d.y;
8
}
9
}
10
}