10
1
mirror of https://gitlab.com/scemama/QCaml.git synced 2024-06-02 19:35:20 +02:00
QCaml/Utils/Bohr.ml

13 lines
126 B
Standard ML

type t = {
x : float ;
y : float ;
z : float ;
}
let make { Point.x ; y ; z } = { x ; y ; z }
(* = %identity *)