]> Raphaƫl G. Git Repositories - youtubedl/blob - test/swftests/LocalVars.as
Update upstream source from tag 'upstream/2020.06.16.1'
[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 }