Search⌘ K
AI Features

Solution Review 1: Display Output

Explore how to display output in Rust by using the print macro. This lesson helps you understand how Rust code generates console output, reinforcing your grasp of basic Rust syntax and output commands to prepare you for more advanced coding tasks.

We'll cover the following...

Solution:

Rust 1.40.0
fn test() {
print!("I am learning Rust programming language");
}

Explanation

...