2021-11-22 20:15:12 +03:00
|
|
|
|
|
|
|
1. [Install Rust](https://rustup.rs/)
|
2021-11-22 20:19:52 +03:00
|
|
|
2. [Build roc from source](../BUILDING_FROM_SOURCE.md)
|
2021-11-22 20:15:12 +03:00
|
|
|
3. Run examples with:
|
|
|
|
```
|
|
|
|
# Rust
|
2022-06-21 08:57:24 +03:00
|
|
|
cargo run examples/platform-switching/rust-platform/rocLovesRust.roc
|
2021-11-22 20:15:12 +03:00
|
|
|
# Zig
|
2022-06-21 08:57:24 +03:00
|
|
|
cargo run examples/platform-switching/zig-platform/rocLovesZig.roc
|
2021-11-22 20:15:12 +03:00
|
|
|
# C
|
2022-06-21 08:57:24 +03:00
|
|
|
cargo run examples/platform-switching/c-platform/rocLovesC.roc
|
2021-11-22 20:15:12 +03:00
|
|
|
```
|
2021-12-09 12:36:53 +03:00
|
|
|
4. See [here](../README.md#examples) for the other examples.
|
|
|
|
|