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