- or download this
# set $foo to 'bar'
my $foo = "bar";
# send $foo to this_func()
this_func($foo);
- 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.
- or download this
# radix sort, O(Nk)
# "Mastering Algorithms in Perl", Orwant, et. al.
my @sorted_names = radixSort(\@names);
- or download this
# find_missing() uses a binary-tree approach
# see IMPLEMENTATION section of Pod for details
my $next_ID = find_missing(\@list);
- or download this
perl -pe '$_ x= --$|' FILE