-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# wasm3-ldc | ||
D bindings for Wasm3, the fastest WebAssembly interpreter | https://github.com/wasm3/wasm3 | ||
|
||
D bindings for Wasm3, the fastest WebAssembly interpreter | ||
|
||
## Requires | ||
|
||
- [LDC](https://github.com/ldc-developers/ldc) version 1.28.0 or later | ||
|
||
## References | ||
|
||
- https://github.com/alichay/zig-wasm3 | ||
- https://github.com/wasm3/wasm3-rs | ||
- https://github.com/wasm3/wasm3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"authors": [ | ||
"Matheus Catarino França" | ||
], | ||
"copyright": "Copyright © 2024, Matheus Catarino França", | ||
"description": "D binding for wasm3.", | ||
"license": "MIT", | ||
"name": "wasm3-ldc" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import std.stdio; | ||
|
||
void main() | ||
{ | ||
writeln("Edit source/app.d to start your project."); | ||
} |