Help for this page

Select Code to Download


  1. or download this
    class WithACounter {
        my $next_count = 1;
        field $count = $next_count++;
    }
    
  2. or download this
    class WithACounter {
        my $next_count = 1;
        if (last_one_was_bad()) { delete_last_one(); $next_count--; }
        field $count = $next_count++;
    }