package p5scm

  1. Overview
  2. Docs
Scheme via camlp5

Install

Dune Dependency

Authors

Maintainers

Sources

0.4.0.tar.gz
md5=eb4ee666fd862f7c8057cca4a73daf44
sha512=d28ee892b8fc3241c42f531f9d372b1b007abbef128c3f3862fa5ad943a3eae1d655b34daac19940e1f9fad1ecfca1419a89c7507b6cbd40d9c0490c6aa6761e

doc/src/p5scm.lib/tokens.ml.html

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.