manifest.ml
sexp.lazy_list
sexp.sexp_app
sexp.sexp_app_pattern
1 2 3 4 5 6 7 open Core type 'a t = 'a list ref let create () = ref [] let add t x = t := x :: !t let to_list t = List.rev !t
1 2 3 4 5 6 7
open Core type 'a t = 'a list ref let create () = ref [] let add t x = t := x :: !t let to_list t = List.rev !t