RosettaCodeData/Task/Array-length/Elm/array-length.elm

11 lines
163 B
Elm
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import Array
import Html
main : Html.Html
main =
["apple", "orange"]
|> Array.fromList
|> Array.length
2023-09-01 09:35:06 -07:00
|> String.fromInt
2023-07-01 11:58:00 -04:00
|> Html.text