File: genlex.mli

package info (click to toggle)
ocaml-stdcompat 19-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,516 kB
  • sloc: ml: 27,806; sh: 875; makefile: 246
file content (8 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (75)
1
2
3
4
5
6
7
8
type token =
  | Kwd of string 
  | Ident of string 
  | Int of int 
  | Float of float 
  | String of string 
  | Char of char 
val make_lexer : string list -> char Stream.t -> token Stream.t