mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 14:42:57 +02:00
11 lines
252 B
OCaml
11 lines
252 B
OCaml
type shape = Circle of float
|
|
(* ^ @constructor *)
|
|
let area s = match s with
|
|
(* ^ @function *)
|
|
| Rectangle r -> r
|
|
(* ^ @constructor *)
|
|
let p = { name = 1 }
|
|
(* ^ @variable.other.member *)
|
|
module M = struct end
|
|
(* ^ @namespace *)
|