Help for this page

Select Code to Download


  1. or download this
    {
        # reduce bogus warnings
    ...
        $tokenizer->get_token() until
            ($token_type eq 'control' and $argument eq 'par');
    }
    
  2. or download this
    my @tokens;
    {
    ...
          push @tokens, [$token_type, $argument, $parameter];
        } until ($token_type eq 'control' and $argument eq 'par');
    }