Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    $. = 0;
    foo($.);
    
  2. or download this
    use strict;
    use warnings;
    ...
       $statement =~ /\b(t|f|true|false)\b/ or next;
       foo($1, $statement);
    }
    
  3. or download this
       foo(0+$.);
       # and
       foo("$1", $statement);