10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-26 15:12:05 +02:00
QCaml/Utils/Bohr.ml

12 lines
105 B
OCaml
Raw Normal View History

2018-02-13 17:36:25 +01:00
type t = {
x : float ;
y : float ;
z : float ;
}
2018-02-24 23:57:38 +01:00
external make : Point.t -> t = "%identity"
2018-02-13 17:36:25 +01:00