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