├── .circleci └── config.yml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitkeep ├── cmd └── shibafu │ └── main.go ├── etc └── token_gen.go ├── evaluator ├── evaluator.go └── evaluator_test.go ├── example └── hello_world.w ├── go.mod ├── go.sum ├── lexer ├── lexer.go └── lexer_test.go └── token └── token.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/shibafu 2 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/shibafu/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/cmd/shibafu/main.go -------------------------------------------------------------------------------- /etc/token_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/etc/token_gen.go -------------------------------------------------------------------------------- /evaluator/evaluator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/evaluator/evaluator.go -------------------------------------------------------------------------------- /evaluator/evaluator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/evaluator/evaluator_test.go -------------------------------------------------------------------------------- /example/hello_world.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/example/hello_world.w -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Code-Hex/shibafu 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/lexer/lexer.go -------------------------------------------------------------------------------- /lexer/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/lexer/lexer_test.go -------------------------------------------------------------------------------- /token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Hex/shibafu/HEAD/token/token.go --------------------------------------------------------------------------------