/** * @file Hy grammar for tree-sitter * @author E Dunbar * @license MIT */ /// // @ts-check module.exports = grammar({ name: "hy", rules: { // TODO: add the actual grammar rules source_file: $ => "hello" } });