bunbun/src/main.rs

11 lines
221 B
Rust
Raw Normal View History

2024-03-23 21:58:32 +00:00
use colored::Colorize;
fn main() {
let bottom = format!("c({})({})", "\"".red(), "\"".red()).to_string();
let ascii = vec!["(\\ /)", "( . .)", &bottom];
for i in ascii {
println!(" {}", i);
}
}