6 lines
79 B
Haskell
6 lines
79 B
Haskell
import Data.Char
|
|
|
|
s = "alphaBETA"
|
|
|
|
lower = map toLower s
|
|
upper = map toUpper s
|