Sha256: b9a58c395bbe218b4c38fb8fa11c6ed976afea0152d9bffcf47f7d2845fb19c3
Contents?: true
Size: 700 Bytes
Versions: 66
Compression:
Stored size: 700 Bytes
Contents
{- 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 (helloWorld) -- It's good style to include any types at the top level of your modules. helloWorld : Maybe String -> String helloWorld name = Debug.crash "Please implement this function" {- 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! -}
Version data entries
66 entries across 66 versions & 1 rubygems