Initial release

This commit is contained in:
Emmanuel Di Pretoro 2026-03-13 20:15:16 +01:00
commit 5029209112
2 changed files with 17 additions and 0 deletions

14
README.md Normal file
View File

@ -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"
}
```

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/edipretoro/waiig_monkey
go 1.25.7