Files
didakta-rust-on-robots/tutorial/01-rust-hello/solution/src/main.rs
2026-03-08 19:41:38 +01:00

9 lines
274 B
Rust

fn main() {
let participant_name = "Didacta Participant";
let workshop_title = "Rust on Embedded @ Didacta";
println!("Hello, {participant_name}!");
println!("Welcome to: {workshop_title}");
println!("Next step: types, control flow, and ownership.");
}