Hello World on the command line

✅ Create a new Rust project

cargo new rustagram
cd rustagram

✅ To start the tool will only print a message. Open src/main.rs and add

fn main() {
    println!("Hello World from wasmtime!");
}

Next, read how to build and run the application.