Join Exercism’s LFE Track for access to 31 exercises with automatic analysis of your code and personal mentoring, all 100% free.
(defmodule leap
(export (leap-year 1)))
(defun leap-year
([year] (when (=:= (rem year 400) 0))
'true)
([year] (when (=:= (rem year 100) 0))
'false)
([year] (when (=:= (rem year 4) 0))
'true)
([_]
'false))
Get better at programming through fun, rewarding coding exercises that test your understanding of concepts with Exercism.
Given a phrase, count the occurrences of each word in that phrase.
Given a year, report if it is a leap year.
Calculate the Hamming difference between two DNA strands.
With LFE, you can use Lisp features while reaping the benefits of Erlang VM.
Take advantage of features such as Function Composition and Pattern Matching.
LFE runs on the Erlang VM, ideal for low-latency and fault-tolerant systems.
LFE brought homoiconicity to the Erlang VM, as it supports Symbolic expressions.
With LFE you can upgrade running systems without restarts, via hot code loading.
LFE supports metaprogramming via low-hygiene macros, ideal for creating DSLs.
Every language has its own way of doing things. LFE is no different. Our mentors will help you learn to think like a LFE developer and how to write idiomatic code in LFE. 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 LFE - they'll help you discover the things you don't know that you don't know.
Learn more about mentoringThe LFE track on Exercism has 31 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 LFE exercisesThe best part, it’s 100% free for everyone.