https://github.com/autodidaddict/gleasm
A Gleam WebAssembly Parser and Interpreter
https://github.com/autodidaddict/gleasm
gleam-lang webassembly webassembly-runtime
Last synced: about 1 year ago
JSON representation
A Gleam WebAssembly Parser and Interpreter
- Host: GitHub
- URL: https://github.com/autodidaddict/gleasm
- Owner: autodidaddict
- License: apache-2.0
- Created: 2020-10-25T21:26:27.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-26T00:49:11.000Z (over 5 years ago)
- Last Synced: 2025-01-04T23:17:44.498Z (about 1 year ago)
- Topics: gleam-lang, webassembly, webassembly-runtime
- Language: Erlang
- Homepage:
- Size: 12.7 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gleasm
A Gleam program
## Quick start
```sh
# Build the project
rebar3 compile
# Run the eunit tests
rebar3 eunit
# Run the Erlang REPL
rebar3 shell
```
## Installation
If [available in Hex](https://www.rebar3.org/docs/dependencies#section-declaring-dependencies)
this package can be installed by adding `gleasm` to your `rebar.config` dependencies:
```erlang
{deps, [
gleasm
]}.
```