mirror of
https://gitlab.com/scemama/QCaml.git
synced 2024-12-22 20:33:36 +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 *)
|