Last active
March 31, 2023 18:08
-
-
Save choonkeat/273ed43151ac520c1660e47fba1fd191 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type TrafficLight | |
= Red | |
| Yellow | |
| Green | |
allTrafficLight : List TrafficLight | |
allTrafficLight = | |
let | |
helper list = | |
case List.head list of | |
Nothing -> | |
Red :: list |> helper | |
Just Red -> | |
Yellow :: list |> helper | |
Just Yellow -> | |
Green :: list |> helper | |
Just Green -> | |
list | |
in | |
helper [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment