Skip to content

Instantly share code, notes, and snippets.

@jasondown
Created December 30, 2018 03:16
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 jasondown/017bf0c1659513be9394b14503dec54b to your computer and use it in GitHub Desktop.
Save jasondown/017bf0c1659513be9394b14503dec54b to your computer and use it in GitHub Desktop.
type MoleculeType =
| A | B | C | D | E
override x.ToString () =
match x with
| A -> "A"
| B -> "B"
| C -> "C"
| D -> "D"
| E -> "E"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment