Rust Basics - Lesson 1
Learn Rust syntax
Beginner⏱️ 30 minutes
Lesson Content
Rust Lesson 1
Variables, Functions, Types
fn main() {
println!("Hello Rust!");
}
rust
Loading...
Expected Output: Hello
Learn Rust syntax
Variables, Functions, Types
fn main() {
println!("Hello Rust!");
}