Author: Michael Davis [mcarsondavis@gmail.com]
Hash: e82424e61fee954a7e1475e581111853c5cd7152
Timestamp: Thu, 23 Dec 2021 23:15:25 +0000 (2 years ago)

+3 -1 +/-1 browse
ideate on overall rules
1diff --git a/grammar.js b/grammar.js
2index dc36969..f37fde0 100644
3--- a/grammar.js
4+++ b/grammar.js
5 @@ -6,6 +6,8 @@ module.exports = grammar({
6 extras: ($) => [],
7
8 rules: {
9- source: ($) => "hello",
10+ source: ($) => repeat($._line),
11+
12+ _line: ($) => choice(),
13 },
14 });