Help for this page

Select Code to Download


  1. or download this
    sub sep_id {
    ...
    ...
                }
             }
             select STDOUT;
    
  2. or download this
      my $SOME_GLOBAL_VARIABLE = 0;
      some_sub_with_side_effects();
    ...
      sub some_sub_with_side_effects {
        $SOME_GLOBAL_VARIABLE = 1;
      }
    
  3. or download this
      my $SOME_GLOBAL_VARIABLE = some_sub_without_side_effects();
    
    ...
      sub some_sub_without_side_effects {
        return 1;
      }