Advertisement
Guest User

Untitled

a guest
Dec 16th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.11 KB | None | 0 0
  1. let rec printSub sub =
  2.     match sub with
  3.         | ((_, _)::tail, _, _) ->
  4.             printSub tail;
  5.         | [] -> ()
  6. ;;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement