elm/exercises/hello-world/HelloWorld.example

10 lines
180 B
Text
Raw Normal View History

module HelloWorld where
helloworld : Maybe String -> String
helloworld name =
case name of
Just name ->
"Hello, " ++ name ++ "!"
Nothing ->
"Hello, World!"