Files
owenrees 79155255f6 Transfer code (#1)
* copy project root files

* import previously created code and rename where needed

* fix license and lint

* main is now just a JS wrapper

* minified main.cjs rather than copying to a newly named file
2026-05-28 12:35:03 +02:00

15 lines
316 B
OCaml

module MoveMap = Map.Make (Int)
type tag = { key : string; value : string }
type item =
| Move of string
| Number of string
| Clock of string
| Nag of string
| Comment of string
| Result of string
| Variation of item list
type game = { tags : tag list; content : item list; result : string option }