Skip to content

Instantly share code, notes, and snippets.

@kjnilsson
Created December 5, 2015 11:13
Show Gist options
  • Save kjnilsson/a4eeeefbb9d462a96528 to your computer and use it in GitHub Desktop.
Save kjnilsson/a4eeeefbb9d462a96528 to your computer and use it in GitHub Desktop.
record or functions
type Ops =
{ Do1: string -> int
Do2: int -> string }
let myFunc { Do1 = do1 } s =
do1 s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment