Skip to content

Instantly share code, notes, and snippets.

@dgfitch
Created May 5, 2010 21:28
Show Gist options
  • Save dgfitch/391466 to your computer and use it in GitHub Desktop.
Save dgfitch/391466 to your computer and use it in GitHub Desktop.
let set = Set.ofList
let map = Map.ofList
let w = set [1; 2; 2; 5]
let x = map [("foo", 1); ("bar", 2)]
let (~~) = set
let (!!) = map
let y = ~~ [1; 2; 2; 5]
let z = !! [("foo", 1); ("bar", 2)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment