Turbo Genesis SDK

Getting Started

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!!!"); }