Hello, world
fn main() {
println!("Hello, world!");
}
$ cargo run
Compiling hello v0.1.0 (/home/degra/src/hello)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.31s
Running `target/debug/hello`
Hello, world!
guest@fdegra.com:~/blog$bat hello-world.md
fn main() {
println!("Hello, world!");
}
$ cargo run
Compiling hello v0.1.0 (/home/degra/src/hello)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.31s
Running `target/debug/hello`
Hello, world!