Skip to content

Instantly share code, notes, and snippets.

@SteveGilham
Created April 26, 2015 13:11
Categorising inputs
let rec mem x l =
match l with
[] -> false
| (y::ys) -> if x = y then true else mem x ys ;;
let stopcase x = mem x stopcases ;;
let digit x = mem x digits ;;
let alpha x = not(mem x (digits @ stopcases)) ;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment