diff options
| author | Joop Kiefte <ikojba@gmail.com> | 2018-12-31 18:05:49 +0100 |
|---|---|---|
| committer | Joop Kiefte <ikojba@gmail.com> | 2018-12-31 18:05:49 +0100 |
| commit | 78370fd7daaa90c109aeede3ceae8071c6f5feae (patch) | |
| tree | 830639ed4fc19ac57bfe567b93aaacb77f14027a /lex | |
| parent | 096e5c3b801b245b4fd1a17e9a9fae9ed7e2c0d2 (diff) | |
Add examples and get rid of some old code
Diffstat (limited to 'lex')
| -rw-r--r-- | lex/example.go | 5 | ||||
| -rw-r--r-- | lex/example.lex | 20 |
2 files changed, 25 insertions, 0 deletions
diff --git a/lex/example.go b/lex/example.go new file mode 100644 index 0000000..164e71a --- /dev/null +++ b/lex/example.go @@ -0,0 +1,5 @@ +package lex + +var Example = ` + +` diff --git a/lex/example.lex b/lex/example.lex new file mode 100644 index 0000000..14ec4f8 --- /dev/null +++ b/lex/example.lex @@ -0,0 +1,20 @@ +INT. HOUSE - DAY + +MARY +I can't believe how easy it is to write in Fountain. + +TOM +(typing) +Look! I just made a parenthetical! + +SOMETHING HAPPENS! + +(what? I don't know...) + +EXT. GARDEN + +TOM +What am I doing here now? +To be honest, I have absolutely no idea! + +And that means really no idea! |
