3 lines
64 B
OCaml
3 lines
64 B
OCaml
type 'a my_list = Cons of 'a * 'a my_list
|
|
| Nil
|
type 'a my_list = Cons of 'a * 'a my_list
|
|
| Nil
|