mirror of
https://github.com/correl/elm.git
synced 2024-11-15 19:19:31 +00:00
11 lines
210 B
Text
11 lines
210 B
Text
|
module HelloWorld exposing (..)
|
||
|
|
||
|
helloWorld : Maybe String -> String
|
||
|
helloWorld name =
|
||
|
case name of
|
||
|
Just name ->
|
||
|
"Hello, " ++ name ++ "!"
|
||
|
|
||
|
Nothing ->
|
||
|
"Hello, World!"
|