in reply to step over or ignore function in Perl?!
Update: New, improved example! Now with more modifiers!>perl -wMstrict -le "my $this_is_true = rand > 0.5; do_this_function() if $this_is_true; print q{i'm doing that!} while rand > 0.5; sub do_this_function { print q{i'm doing this!} } " i'm doing this! i'm doing that! i'm doing that!
|
|---|