Help for this page

Select Code to Download


  1. or download this
    sub test{ print @_; }
    
    ...
    $coderef->( 'a different argument' ); 
    # Would print 'this is the argument'!!
    
  2. or download this
    sub test{ print 'this is the argument'; }
    
    ...
    $coderef->( 'a different argument' ); 
    # Prints 'this is the argument'!!
    
  3. or download this
    my $coderef = sub{ print @_; };
    $coderef->( 'Some', 'args' );
    # Prints 'someargs'