Getting started with emscripten!
This is a tiny repository to learn (and have fun with
Emscripten.
Specifically, I’m getting the hang of C++ and want to create some “in browser
experiments.”
For most of these, you can compile the cpp script as follows:
em++ helloworld.cpp -o index.html
If it doesn’t work in your browser, you can disable WebAssembly:
em++ helloworld.cpp -o index.html -s WASM=0
I was having a hard time getting the wasm to work on Github Pages, so the
examples here are running without it.