blob: eec2f3e82c922b7991af7b8613af894b95b182db (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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
}
|