Skip to content

Instantly share code, notes, and snippets.

Created April 22, 2015 04:01
Show Gist options
  • Save anonymous/e18953b7030bda123936 to your computer and use it in GitHub Desktop.
Save anonymous/e18953b7030bda123936 to your computer and use it in GitHub Desktop.
let lst = FunqList.ofSeq [0 .. 0]
let x =
match lst with
| Last(initial, last1, last2, last3) -> sprintf "%A" last3
| Last(initial, last1, last2) -> sprintf "%A" last2
| Last(Nil, last1) -> sprintf "%A" last1
| Last(initial, last1) -> sprintf "%A" last1
| Last
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment