Help for this page

Select Code to Download


  1. or download this
    sub msg {
               $msg_num = @_[0];
    # ...
    
  2. or download this
    @_[0] # An array slice
    $_[0] # The first element of the array @_ (usually passed to the subro
    +utine)