Help for this page

Select Code to Download


  1. or download this
      DB<156> sub tst { (map {lc} @_)[0.. wantarray * $#_] }
    
    ...
    
      DB<158> $scalar=tst("A".."D")
     => "a"
    
  2. or download this
      DB<159> sub tst { (map {lc} @_)[0.. $#_] }
    
    ...
    
      DB<161> $scalar=tst("A".."D")
     => "d"