Elm (programming language): Difference between revisions

Content deleted Content added
No edit summary
m Immutability: fix capitalization
Line 28:
 
=== Immutability ===
All values in Elm are [[Immutable object|immutable]], meaning that a value cannot be modified after it is created. Elm uses [[persistent data structure]]s to implement its Arraysarrays, Setssets, and Dictionariesdictionaries in the standard library.<ref>{{cite web|url=https://package.elm-lang.org/packages/elm/core/latest/|title=elm/core|website=package.elm-lang.org}}</ref>
 
=== Static types ===