Join Exercism’s Elm Track for access to 73 exercises grouped into 20 Elm Concepts, with automatic analysis of your code and personal mentoring, all 100% free.
module HelloWorld exposing (helloWorld)
helloWorld : Maybe String -> String
helloWorld maybeName =
case maybeName of
Nothing ->
"Hello, World!"
Just name ->
"Hello, " ++ name ++ "!"
Get better at programming through fun, rewarding coding exercises that test your understanding of concepts with Exercism.
Learn the Elm `let` expression by cooking Mario's Marvellous Lasagna
Given a string of digits, output all the contiguous substrings of length `n` in that string.
Parsing a Smart Game Format string.
Elm is for making Web applications.
Elm aims at the most enjoyable developer experience possible.
Elm has tiny compilation times, small assets and a fast runtime.
Thanks to strict typing, Elm catches potential errors at compilation.
Elm has a dedicated interop mechanism with JavaScript called ports.
Elm is a simple pure functional language, a good gateway for more advanced functional languages.
Every language has its own way of doing things. Elm is no different. Our mentors will help you learn to think like a Elm developer and how to write idiomatic code in Elm. Once you've solved an exercise, submit it to our volunteer team, and they'll give you hints, ideas, and feedback on how to make it feel more like what you'd normally see in Elm - they'll help you discover the things you don't know that you don't know.
Learn more about mentoringThe Elm track on Exercism has 20 concepts and 73 exercises to help you write better code. Discover new exercises as you progress and get engrossed in learning new concepts and improving the way you currently write.
See all Elm exercisesThe best part, it’s 100% free for everyone.