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 }