Help for this page

Select Code to Download


  1. or download this
    sub concatenate{ $_[ 0 ] . $_[ 1 ] }
    
  2. or download this
    sub add{ $_[ 0 ] + $_[ 1 ] }
    
  3. or download this
    sub loop (&@) { $_[ 0 ]->( $_ ) for @_ }
    
  4. or download this
    Synopsis:
    
    ...
    exit $program->doit( 
        instructions => 'Use what you need' 
    );