Created
May 15, 2019 06:07
-
-
Save moxuse/6f0e167ff0d2f670f564594adc2c61b5 to your computer and use it in GitHub Desktop.
CustomTypes
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 UserStatus | |
= Regular | |
| Visitor | |
type alias User = | |
{ status : UserStatus | |
, name : String | |
} | |
-- other declaration of User | |
type User | |
= Regular String Int | |
| Visitor String | |
-- or | |
type User | |
= Regular String Int Location | |
| Visitor String | |
| Anonymous |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment