2 Commits

Author SHA1 Message Date
fc0af1ccc5 Updated README 2025-03-28 09:09:50 -04:00
980fb77114 Makefile changes 2025-03-28 09:07:29 -04:00
2 changed files with 5 additions and 1 deletions

View File

@@ -8,6 +8,6 @@ vet: fmt
buildLib: vet buildLib: vet
go build -gcflags="all=-N -l" ./... go build -gcflags="all=-N -l" ./...
buildCmd: buildLib buildCmd: buildLib
go build -C cmd/ -gcflags="all=-N -l" -o re ./... go build -C kg/ -gcflags="all=-N -l" -o kg ./...
test: buildCmd test: buildCmd
go test -v ./... go test -v ./...

View File

@@ -15,3 +15,7 @@ It also includes features not present in regexp, such as lookarounds and backref
The syntax is, for the most part, a superset of Go's regexp. A full overview of the syntax can be found [here](https://pkg.go.dev/gitea.twomorecents.org/Rockingcool/kleingrep/regex#hdr-Syntax). The syntax is, for the most part, a superset of Go's regexp. A full overview of the syntax can be found [here](https://pkg.go.dev/gitea.twomorecents.org/Rockingcool/kleingrep/regex#hdr-Syntax).
__For more information, see https://pkg.go.dev/gitea.twomorecents.org/Rockingcool/kleingrep/regex__. __For more information, see https://pkg.go.dev/gitea.twomorecents.org/Rockingcool/kleingrep/regex__.
### How it works
I've written about the inner workings of the engine [on my blog](https://twomorecents.org/writing-regex-engine/index.html).