1 unstable release
0.0.0 | Oct 27, 2019 |
---|
#68 in #u64
2KB
Wasm language
This is intended to be a higher-level C-like language compiling directly to WebAssembly with semantics that map cleanly to those of the WebAssembly virtual machine. Essentially, this language is to WebAssembly as C was to PDP-7 assembly.
Example
extern fn print(u64* ptr, u64 len);
fn main() {
print("Hello world!", 12);
}