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