Help for this page

Select Code to Download


  1. or download this
    while (@interval=<PHILE>){
        foreach $line(@interval){
    ...
        analyize($space,@werdz);
                    }
    }
    
  2. or download this
    while (<PHILE>)
    {
    ...
        my @werdz = split;
        analyze( scalar @werdz, @werdz );
    }