But you can call me barty!
A blackhole rendering project written in rust.
cargo run --release
First, install install wasm-bindgen
and run the following:
cargo build --release --target wasm32-unknown-unknown
wasm-bindgen --out-name barty \
--out-dir web \
--target web target/wasm32-unknown-unknown/release/bartholomuegh.wasm
Then add the following to a html file:
<script type="module">
import init from './barty.js'
init()
</script>