This repo contains my code from reading the following:
- Writing An Interpreter In Go (finished 2024-07-23)
- The Lost Chapter (finished 2024-07-27)
- Writing A Compiler In Go (finished 2024-10-25)
❯ go build -o fib ./benchmark
❯ ./fib -engine=eval
engine=eval, result=9227465, duration=14.605212132s
❯ ./fib -engine=vm
engine=vm, result=9227465, duration=4.792953424s
thanks Thorsten, this was fun :)