Crates.io | turbo-genesis-sdk |
lib.rs | turbo-genesis-sdk |
version | 1.6.2 |
source | src |
created_at | 2023-08-19 16:17:19.683429 |
updated_at | 2024-11-22 19:15:53.153547 |
description | Turbo Genesis SDK |
homepage | |
repository | https://github.com/super-turbo-society/turbo-genesis-sdk |
max_upload_size | |
id | 948775 |
size | 136,879 |
See more documentation at https://docs.rs/turbo-genesis-sdk/latest/turbo_genesis_sdk/
First, create a project:
cargo init --lib your-project-name
Add the sdk as a dependency in Cargo.toml
:
[dependencies]
turbo = { package = "turbo-genesis-sdk" }
Open src/lib.rs
and add the following:
turbo::go! {
text!("Hello, world!!!");
}
Build with the following command:
cargo build --target wasm32-unknown-unknown
Run your game with Turbo
turbo run -w .