26 lines
650 B
Elm
26 lines
650 B
Elm
|
{-
|
||
|
This is a "stub" file. It's a little start on your solution. It's not a
|
||
|
complete solution though; you have to write some code.
|
||
|
|
||
|
The module name is expected by the test program and must match the name of this
|
||
|
file. It has to stay just the way it is.
|
||
|
-}
|
||
|
|
||
|
|
||
|
module HelloWorld exposing (..)
|
||
|
|
||
|
-- It's good style to include any types at the top level of your modules.
|
||
|
|
||
|
|
||
|
helloWorld : Maybe String -> String
|
||
|
helloWorld name =
|
||
|
"replace with your code!"
|
||
|
|
||
|
|
||
|
|
||
|
{-
|
||
|
When you have a working solution, REMOVE ALL THE STOCK COMMENTS.
|
||
|
They're here to help you get started but they only clutter a finished solution.
|
||
|
If you leave them in, nitpickers will protest!
|
||
|
-}
|