package p5scm

  1. Overview
  2. Docs

Source file tokens.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(*
 The MIT License                                                                              

 Copyright (c) 2021 Jason D. Nielsen <drjdnielsen@gmail.com>
 *)

type token =
  | LPR
  | RPR
  | LSQ
  | RSQ
  | VLPR
  | LCL
  | RCL
  | DOT
  | TOPL of string
  | BOOL of string
  | IDENT of string
  | TIDENT of string
  | KEYWORD of string
  | INT of string
  | FLOAT of string
  | OP of string
  | CHAR of string
  | STRING of string
  | EOF
OCaml

Innovation. Community. Security.