Skip to content

Instantly share code, notes, and snippets.

@SteveGilham
Created April 26, 2015 12:59
Parser transform
let (>:) f h s =
let u = f s
match u with
Return(rest, result)
-> Return(rest, h result)
| Fail -> Fail ;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment