5 lines
80 B
OCaml
5 lines
80 B
OCaml
type 'a lc = {
|
|
mutable tete : 'a option;
|
|
mutable suivant : 'a lc option
|
|
};;
|