...
Code Block |
---|
fn main() { for number in (1..4).rev() { println!("{number}!"); } println!("LIFTOFF!!!"); } |
Ownership
IntelliJ IDE
To use Rust in IntelliJ install the following plugins:
...
...
Code Block |
---|
fn main() { for number in (1..4).rev() { println!("{number}!"); } println!("LIFTOFF!!!"); } |
To use Rust in IntelliJ install the following plugins:
...