Main.hx 89 B

123456
  1. function main() foo();
  2. inline function foo() {
  3. static var count = 5;
  4. trace(--count);
  5. }