elm/exercises/hello-world/HelloWorld.example

12 lines
211 B
Text
Raw Normal View History

module HelloWorld exposing (..)
helloWorld : Maybe String -> String
helloWorld name =
case name of
Just name ->
"Hello, " ++ name ++ "!"
Nothing ->
"Hello, World!"