Help for this page

Select Code to Download


  1. or download this
    while  (my $token = $stream->get_token) {
      if (($token->[0] eq 'C' and 
    ...
        print $token->[1];
      }
    }
    
  2. or download this
    my $parsing=undef;
    while  (my $token = $stream->get_token) {
    ...
        print $token->[1];
      }
    }