10 lines
99 B
OCaml
10 lines
99 B
OCaml
type t = {
|
|
mutable x : int ;
|
|
mutable y : int ;
|
|
}
|
|
|
|
let zero = {
|
|
x = 0 ;
|
|
y = 0 ;
|
|
}
|
|
|