Help for this page

Select Code to Download


  1. or download this
      DB<2> p shift @{[42..59]}
    42
    
  2. or download this
      DB<3> $shift = sub { shift @{$_[0]} }
    
      DB<4> p [42..59]->$shift
    42
    
  3. or download this
      DB<5> p (42..59)[0]
    42
    
  4. or download this
      DB<6> p [42..59]->[0]
    42