Practice
Practice - 001
A program to just print a message in the terminal
fn main() { program_day1()}
// Prints the line "Hello World"fn program_day1() { println!("Hello World")}
Result
Hello World
Practice
A program to just print a message in the terminal
fn main() { program_day1()}
// Prints the line "Hello World"fn program_day1() { println!("Hello World")}
Hello World