100-days-of-rust/Misc-Projects/hello_rainbow/src/main.rs

15 lines
359 B
Rust
Raw Normal View History

2023-03-24 00:52:21 +00:00
mod colors;
fn main() {
colors::print_black("Hello Black!");
colors::print_blue("Hello Blue!");
colors::print_green("Hello Green!");
colors::print_red("Hello Red!");
colors::print_cyan("Hello Cyan!");
colors::print_magenta("Hello Magenta!");
colors::print_yellow("Hello Yellow!");
colors::print_white("Hello White!");
}