99 个 Elm 问题/问题 1
外观
找到列表的最后一个元素。
在这个测试应用程序中实现 lastElement。
module Main exposing (..)
import Html exposing (text)
import List
import Maybe
lastElement : List a -> Maybe a
lastElement list =
-- your implementation goes here
Nothing
main =
case lastElement [1,2,3,4] of
Just a -> text (toString a)
Nothing -> text "No element found"
4