rust-practice/hello.rs

6 lines
102 B
Rust
Raw Normal View History

2020-07-07 04:08:47 +00:00
// i want to hug ferris
fn main() {
println!("Hello World!");
2020-07-07 11:23:30 +00:00
println!("I'm a Rustacean!");
2020-07-07 04:08:47 +00:00
}