summaryrefslogtreecommitdiff
path: root/lex/type.go
blob: a906ac2bbc0b39dea27a4ff9cd3d734a34b74f96 (plain)
1
2
3
4
5
6
7
8
9
// The lex format is basically a parse tree for screenplays, which enables quick debugging.
package lex

type Screenplay []Line

type Line struct {
	Type     string
	Contents string
}