Rust vs Python

//hello world in rust
fn main {
	println!("hello world);
}

#hello world in python
print("Hello World")
Air4x