An open API service indexing awesome lists of open source software.

https://github.com/mjanjic01/wasm-playground

Simple WebAssembly examples with Emscripten
https://github.com/mjanjic01/wasm-playground

c emscripten webassembly

Last synced: 2 months ago
JSON representation

Simple WebAssembly examples with Emscripten

Awesome Lists containing this project

README

        

## wasm playground
Simple examples of compiling C code to WebAssembly for the web.

Requires [Emscripten](http://kripken.github.io/emscripten-site/)

```
# Makefile builds ball example by default.

make native # native build
make wasm # WebAssembly build
make clean # Clean build files
```

Cube example - from [https://github.com/callahad/spinning-cube](https://github.com/callahad/spinning-cube)

Ball example - my own attempt