plasm - Perl WebAssembly command line tool
version 0.03
% plasm run program.wasm [ arguments ] % plasm dump program.wasm % plasm --help % plasm --version
For full documentation:
% perldoc plasm
plasm
is the Perl WebAssembly command line tool.
% plasm run program.wasm [ arguments ] % plasm run --help
Runs the given WebAssembly program. The arguments after program.wasm
are passed on to the WebAssembly program.
% plasm dump program.wasm % plasm dump --help
Dumps the import and exports of the given WebAssembly module.
% plasm wat program.wat % plasm wat --help
Converts WebAssembly Text (.wat) to WebAssembly Binary (.wasm) using wasmtime's wat2wasm
function.
Write Perl extensions using Wasm!
Low-level Wasmtime bindings for Perl.
Graham Ollis <plicease@cpan.org>
This software is copyright (c) 2020 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.