Skip to content

Instantly share code, notes, and snippets.

@GregRos
Forked from anonymous/Example.fs
Created April 22, 2015 04:02
Show Gist options
  • Select an option

  • Save GregRos/647851f5060afcee88af to your computer and use it in GitHub Desktop.

Select an option

Save GregRos/647851f5060afcee88af 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment