summaryrefslogtreecommitdiff
path: root/lex/type.go
blob: b4aae0f3794cd94ed2ef3d3a65f16faf40e90007 (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 Document []Line

type Line struct {
	Type     string
	Contents string
}