This proof of concept demonstrates how to run the Tengo programming language in the browser using WebAssembly.
Explore the Tengo playground deployed as a static website here: https://tengo.mkuznets.com
- Install Go.
- Run
make build
to compilestatic/tengo.wasm
- Serve the
./static
directory using any HTTP file server. For example:python -m http.server -d ./static --bind 127.0.0.1 8000