Help for this page

Select Code to Download


  1. or download this
    @array = myfunction(); # array or list context (same thing)
    $array = myfunction(); # scalar context
    
  2. or download this
    functionOnlyTakesArrays(@array) # works
    functionOnlyTakesArrays("one","two","three") # doesn't work