repositorypackage
0.0.0-20241025164303-cab4a4d0ec3c
Repository: https://github.com/tneuqole/monkey-go.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
monkey-go
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)
Benchmark Results
❯ 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 :)