Last active
October 17, 2020 07:00
-
-
Save MelbourneDeveloper/80a5af60b30d00ab3815e3023b0e87bc to your computer and use it in GitHub Desktop.
F# Shape Discriminated Union
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 Shape = | |
| Rectangle of width : float * length : float | |
| Circle of radius : float | |
| Prism of width : float * float * height : float |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment