Rust Hello World program
codeaft.rs
fn main()
{
    println!("Hello, World!");
}
Output
codeaft@codeaft:~$ rustc codeaft.rs
codeaft@codeaft:~$ ./codeaft Hello, World! codeaft@codeaft:~$
Comments and Reactions