Help for this page

Select Code to Download


  1. or download this
    sub get_values { my @a = ("a", "b", "c"); return @a }
    $x = get_values;  # 3
    
  2. or download this
    my @some = (get_values)[0,2];