- Elm code is written as expressions. The end goal of an Elm programm is to specify a
main
expression which will be aSignal
ofHtml
values. - Line comments in Elm are marked using
--
and are equivalent to//
in JS. - Block comments in Elm are marked using
{-
and-}
which are equivalent to/*
and*/
in JS.
module ModuleName where