- or download this
sub something {
my( $string ) = @_;
...
my $hugeString = ........;
something( $hugeString );
- or download this
fuzzyMatch( \$hay, \$nee, 3 ); ## pass references to needle and haysta
+ck
- or download this
sub fuzzyMatch {
my( $rHay, $rNee, $misses ) = @_; ## the 'r's are to remind that
+these are references
- or download this
my $lNee = length $$rNee; ## read as: $lenghtNeedle = length of t
+he data $, referenced by $rNee