Skip to content

Instantly share code, notes, and snippets.

@dsyme
Created July 15, 2016 16:22
Show Gist options
  • Save dsyme/666bf6e193e1706fe7c00c04d8337c74 to your computer and use it in GitHub Desktop.
Save dsyme/666bf6e193e1706fe7c00c04d8337c74 to your computer and use it in GitHub Desktop.
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