- Elm code is written as expressions. The end goal of an Elm programm is to specify a
mainexpression which will be aSignalofHtmlvalues. - 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