feat: add integer

This commit is contained in:
2025-10-18 12:50:41 +08:00
parent 104742ba31
commit a8d1d2c1dc
4 changed files with 28 additions and 40 deletions
+2 -3
View File
@@ -11,7 +11,6 @@ module.exports = grammar({
name: "emm",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
integer: ($) => /0|[1-9]\d*/,
},
});