Skip to content

Instantly share code, notes, and snippets.

@mizchi
Forked from anonymous/hello.rs
Created November 26, 2017 17:08
Show Gist options
  • Save mizchi/b2c4999bd895accf3078122ae9f47051 to your computer and use it in GitHub Desktop.
Save mizchi/b2c4999bd895accf3078122ae9f47051 to your computer and use it in GitHub Desktop.
fn main() {}
#[no_mangle]
pub fn add_one(x: i32) -> i32 {
x + 1
}
const fs = require('fs');
const buf = fs.readFileSync('./hello.wasm');
var m = new WebAssembly.Instance(new WebAssembly.Module(buf));
var h = new Uint8Array(m.exports.memory.buffer);
var p = m.exports.add_one(3);
console.log(p)
@mizchi
Copy link
Author

mizchi commented Nov 26, 2017

$ rustc +nightly --target wasm32-unknown-unknown -O hello.rs
$ node --expose-wasm run.js
4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment