Help for this page

Select Code to Download


  1. or download this
    # set $foo to 'bar'
    my $foo = "bar";
    
    # send $foo to this_func()
    this_func($foo);
    
  2. or download this
    my $prog_state = "bar";
    execInstructions($prog_state);
    ...
    =item C<execInstructions($state)>
    
    Executes a given set of instructions for a specific state that the pro
    +gram is in.  Blah blah blah.
    
  3. or download this
    # radix sort, O(Nk)
    # "Mastering Algorithms in Perl", Orwant, et. al.
    
    my @sorted_names = radixSort(\@names);
    
  4. or download this
    # find_missing() uses a binary-tree approach
    # see IMPLEMENTATION section of Pod for details
    
    my $next_ID = find_missing(\@list);
    
  5. or download this
    perl -pe '$_ x= --$|' FILE