Building an interpreter and compiler by following Thorsten Ball's books
Run the repl
cd interpreter
go run main.goBuild the web repl
cd interpreter/web-repl
GOOS=js GOARCH=wasm go build -o ./public/monkey-repl.wasm Serve the web repl on port 9000
cd interpreter/web-repl/public
python3 -m http.server 9000 --bind 0.0.0.0Or you can play with in online here