Skip to content

Instantly share code, notes, and snippets.

@moxuse
Created May 15, 2019 06:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moxuse/6f0e167ff0d2f670f564594adc2c61b5 to your computer and use it in GitHub Desktop.
Save moxuse/6f0e167ff0d2f670f564594adc2c61b5 to your computer and use it in GitHub Desktop.
CustomTypes
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