Hello World

Hello, World!

fn main() {
    println!("Hello, world!");
}

fn means function. main function is the beginning of every Rust program. println! prints text to the console and its ! indicate that itโ€™s a macro instead of a function.

๐Ÿ’ก Rust files should have .rs file extension and if youโ€™re using more than one word for the file name, follow the snake_case.

  • Save above code in file.rs , but it can be any name with .rs extension.

  • Compiling via rustc file.rs

  • Executing by ./file on Linux and Mac or file.exe on Windows

Rust Playground

Rust Playground is a web interface for running Rust code.

Usages of println!

๐Ÿ’ฏ These are the other usages of println! macro,

fn main() {
    println!("{}, {}!", "Hello", "world"); // Hello, world!
    println!("{0}, {1}!", "Hello", "world"); // Hello, world!
    println!("{greeting}, {name}!", greeting="Hello", name="world"); // Hello, world!

    println!("{:?}", [1,2,3]); // [1, 2, 3]
    println!("{:#?}", [1,2,3]);
    /*
        [
            1,
            2,
            3
        ]
    */

    // ๐Ÿ”Ž format! macro is used to store the formatted STRING
    let x = format!("{}, {}!", "Hello", "world");
    println!("{}", x); // Hello, world!
}

Last updated