Initial commit.

This commit is contained in:
2025-08-26 20:26:12 -04:00
commit 94f9c6652e
38 changed files with 1767 additions and 0 deletions

17
grammar.js Normal file
View File

@@ -0,0 +1,17 @@
/**
* @file Scl grammar for tree-sitter
* @author Jacob Signorovitch <jacob.signorovitch@gmail.com>
* @license MIT
*/
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "scl",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
});