Skip to content

Instantly share code, notes, and snippets.

@qxjit
Created October 1, 2014 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qxjit/a3f56f3272ba0da6e730 to your computer and use it in GitHub Desktop.
Save qxjit/a3f56f3272ba0da6e730 to your computer and use it in GitHub Desktop.
multiline let which is a value, not a function
let f x =
let a =
let c = 2
let d = 3
c + d*x
a + a
printfn "%d" (f 1)
// prints 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment