Skip to content

gauravgahlot/whisk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

whisk

A minimal WebAssembly runtime, created for fun (and learning)

build status

How to use?

# clone the GitHub repository
git clone https://github.com/gauravgahlot/whisk.git
cd whisk

# build whisk
make

Examples

WebAssembly Text Format (.wat)

  • Create a file with the following content and save it as hello.wat:
(module
  (func (export "main")
      (result i32)
    i32.const 1
    return))
  • Build a WebAssembly module using wat2wasm:
wat2wasm hello.wat -o hello.wasm
  • Run the module with whisk
whisk hello.wasm

Resources

About

A minimal WebAssembly runtime

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published