99 个 Elm 问题/问题 22
外观
创建包含给定范围内所有整数的列表,含边界。
import Html exposing (text)
import List
range : Int -> Int -> List Int
-- your implementation goes here
main =
text <| toString <|
range 4 9
结果
[4, 5, 6, 7, 8, 9]
创建包含给定范围内所有整数的列表,含边界。
import Html exposing (text)
import List
range : Int -> Int -> List Int
-- your implementation goes here
main =
text <| toString <|
range 4 9
结果
[4, 5, 6, 7, 8, 9]