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.

12 lines
165 B

  1. // input: []
  2. // output: 2
  3. package {
  4. public class ConstantInt {
  5. private static const x:int = 2;
  6. public static function main():int{
  7. return x;
  8. }
  9. }
  10. }