Created
March 18, 2015 14:39
-
-
Save gsg/d807899b90db18013efe to your computer and use it in GitHub Desktop.
This file contains 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 foo_builder = { | |
mutable foo_b : int option; | |
mutable bar_b : float option; | |
mutable baz_b : string option; | |
} | |
type foo = { | |
foo : int; | |
bar : float; | |
baz : string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment