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.

13 lines
184 B

  1. // input: [1]
  2. // output: 1
  3. package {
  4. public class StaticAssignment {
  5. public static var v:int;
  6. public static function main(a:int):int{
  7. v = a;
  8. return v;
  9. }
  10. }
  11. }