https://github.com/projectevergreen/rust-wasm-poc
A playground for things related to Rust, WASM and the web
https://github.com/projectevergreen/rust-wasm-poc
Last synced: about 1 year ago
JSON representation
A playground for things related to Rust, WASM and the web
- Host: GitHub
- URL: https://github.com/projectevergreen/rust-wasm-poc
- Owner: ProjectEvergreen
- Created: 2019-09-20T23:33:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-30T15:09:23.000Z (over 6 years ago)
- Last Synced: 2025-02-12T07:50:07.656Z (over 1 year ago)
- Language: Rust
- Size: 14.4 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-wasm-poc
A playground for things related to Rust, WASM and the web
[checkout here!](https://github.com/ProjectEvergreen/rust-wasm-poc/tree/wasm-rust)
----------------------------------------------
## rustc
| Commands | Output |
| ---------------------------------------------------------------------------------------------- | -----------------------------------------------------------------:|
| `rustc .\helloWorld.rs` | This produced a helloWorld binary that can be executed. |
| `.\helloWorld.exe` | This is to run the .exe file to be seen. |
| `rustc crateExecutable.rs --extern crateFunction=libcrateFunction.rlib && .\crateFunction.rs` | This is to run lib into .exe file |


