Help for this page

Select Code to Download


  1. or download this
    macro statement_control:<my_while>($expr, &whileblock) {
      while $expr &whileblock();
    ...
      }
      $i++;
    }
    
  2. or download this
    sub my_while(Code &expr, Code &whileblock) {
      while &expr() &whileblock();
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
      };
      $i++;
    };