package p5scm

  1. Overview
  2. Docs
Scheme via camlp5

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.5.0.tar.gz
md5=e0fe733bb7a8cccc94bfbbd3b58e6d76
sha512=4f4efad8bb7b2ab5cfc0fff9bb48e45df8e7396d288d52f5c84b53919e1979720bbd909e82e714e1eb6fe8d3b83c14656167199373a197a6082eab2457fea94d

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