Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        };
        $print->();          # 0,1
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
        $i = $_;
        my_print();          # 0,1
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
    foreach (0, 1) {
        my_print($_);          # 0,1
    }