Created
July 15, 2016 16:22
-
-
Save dsyme/666bf6e193e1706fe7c00c04d8337c74 to your computer and use it in GitHub Desktop.
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
interface IDispatchable = | |
member dispatch: string | |
type A = | |
... | |
interface IDispatchable with | |
member self.dispatch = "Goodbye, World!" | |
type B = | |
... | |
interface IDispatchable with | |
member self.dispatch = "Goodbye, World!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment