Skip to content

Instantly share code, notes, and snippets.

@alinpopa
Last active January 15, 2017 16:09
Show Gist options
  • Save alinpopa/6fcefb5b254110ee83428342d063de88 to your computer and use it in GitHub Desktop.
Save alinpopa/6fcefb5b254110ee83428342d063de88 to your computer and use it in GitHub Desktop.
#require "ppx_sexp_conv";;
let l = [(1, "one"); (2, "two")];;
List.iter l ~f:(fun x ->
[%sexp_of: int * string] x
|> Sexp.to_string
|> print_endline);;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment