mirror of
https://gitlab.com/scemama/QCaml.git
synced 2025-01-03 18:15:47 +01:00
11 lines
197 B
OCaml
11 lines
197 B
OCaml
(* Polymorphic types
|
|
*
|
|
* <<<~Basis.t~>>>
|
|
* #+NAME: types *)
|
|
|
|
(* [[file:~/QCaml/ao/basis.org::types][types]] *)
|
|
type t =
|
|
| Unknown
|
|
| Gaussian of Basis_gaussian.t
|
|
(* types ends here *)
|