Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Installation & Getting Started

Requirements

Steplo is built using Rust, so you must have Rust installed to run the compiler.

Installation

## Clone the repo
git clone https://github.com/tetrogem/steplo.git
cd steplo

## (Optional) Create an output folder, or use an already existing folder
## Note: The local output folder named `out` is .gitignored, so it's safe to create/use!
mkdir out

## Compile a Steplo program
cargo run examples/hel.lo out --target scratch

This will generate a .sb3 file in the out/ directory.

You can now open the .sb3 in the Scratch editor and run your Steplo-compiled project!

Compiler Options

Run the following to see all CLI options:

cargo run -- -h

Next Steps

The rest of the chapters in the book will walk you through all of Steplo's features!