Rapsys Git
/
youtubedl
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Install support files via debhelper instead of setup.py.
[youtubedl]
/
test
/
swftests
/
LocalVars.as
1
// input: [1, 2]
2
// output: 3
3
4
package {
5
public class LocalVars {
6
public static function main(a:int, b:int):int{
7
var c:int = a + b + b;
8
var d:int = c - b;
9
var e:int = d;
10
return e;
11
}
12
}
13
}