6 lines
96 B
Elm
6 lines
96 B
Elm
import String exposing (toLower, toUpper)
|
|
|
|
s = "alphaBETA"
|
|
|
|
lower = toLower s
|
|
upper = toUpper s
|