opazl/src/ast.ml
2019-11-19 23:45:03 +01:00

14 lines
211 B
OCaml

type time = int * int * int
type user = string
type msg = string
type notice = string
type action = string
type content = Msg of user * msg | Notice of notice | Action of action
type line = time * content