commit 50292091126e3f3c0af2e2a7c9828f9be212c194 Author: Emmanuel Di Pretoro Date: Fri Mar 13 20:15:16 2026 +0100 Initial release diff --git a/README.md b/README.md new file mode 100644 index 0000000..732e9ce --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Writing An Interpreter In Go | Thorsten Ball + +This repo contains my notes and code from the reading of « Writing An Interpreter In Go » by Thorsten Ball. + +## Reference + +```bibtex +@book{Ball2019-ng, + title = "Writing an interpreter in go: Version 1.6", + author = "Ball, Thorsten", + year = 2019, + language = "en" +} +``` diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..f346400 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/edipretoro/waiig_monkey + +go 1.25.7