Minumum Working Example

This commit is contained in:
Simon Martens
2026-02-20 14:53:05 +01:00
parent 8f5338c0b8
commit 5a00333266
8 changed files with 1169 additions and 6 deletions

View File

@@ -18,10 +18,10 @@ type LineType int
const (
Continuation LineType = iota
First
Fist = First // backward-compatible alias for historical typo
Semantic // Indent=0 , still type="break"
Indent // Indent>0, type dosent matter
Empty // no line content, after that, an empty line
Fist = First // backward-compatible alias for historical typo
Semantic LineType = iota // Indent=0 , still type="break"
Indent // Indent>0, type dosent matter
Empty // no line content, after that, an empty line
)
type Token struct {