Join Exercism’s Elm Track for access to 108 exercises grouped into 28 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.
Create an implementation of the Atbash cipher, an ancient encryption system created in the Middle East.
Learn the basics of Elm by cooking Lucian's Luscious Lasagna
Learn the basics of Elm web applications by checking if a string is a palindrome
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 28 concepts and 108 exercises to help you write better code.
See all Elm exercises