schala/experiments/tree-sitter-test/grammar.js
2024-04-21 02:26:53 -07:00

7 lines
106 B
JavaScript

module.exports = grammar({
name: "TestLang",
rules: {
source_file: $ => "hello"
}
});