From 50292091126e3f3c0af2e2a7c9828f9be212c194 Mon Sep 17 00:00:00 2001 From: Emmanuel Di Pretoro Date: Fri, 13 Mar 2026 20:15:16 +0100 Subject: [PATCH] Initial release --- README.md | 14 ++++++++++++++ go.mod | 3 +++ 2 files changed, 17 insertions(+) create mode 100644 README.md create mode 100644 go.mod 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