Last active
January 15, 2017 16:09
-
-
Save alinpopa/6fcefb5b254110ee83428342d063de88 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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