Join Exercism’s Elm Track for access to 93 exercises grouped into 22 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.
There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the triplet.
Clean up user-entered phone numbers so that they can be sent SMS messages.
Continue learning the basics of Elm by helping Betty to display her bikes prices
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 22 concepts and 93 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.