Skip to content

web-dom/wasi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WASI

A Rust wrapper for calling WASI

Documentation

This wrapper adheres to this API to the best of its ability. Note that this API is extremely new and may change.

Example

use wasi::*;
fn main(){
  let r = random::get();
  let d6 = 6*r;
  console_log(&format!("you rolled a {}",d6));
}