Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
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 *)