├── Makefile ├── README.md ├── main.go ├── parens.go ├── parens_test.go ├── prego.go ├── prego_test.go └── tests ├── Makefile ├── demo.expect └── demo.po /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/main.go -------------------------------------------------------------------------------- /parens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/parens.go -------------------------------------------------------------------------------- /parens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/parens_test.go -------------------------------------------------------------------------------- /prego.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/prego.go -------------------------------------------------------------------------------- /prego_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/prego_test.go -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/demo.expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/tests/demo.expect -------------------------------------------------------------------------------- /tests/demo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strickyak/prego/HEAD/tests/demo.po --------------------------------------------------------------------------------