base lib with cpu benchmark and basic cli

This commit is contained in:
2026-03-23 22:54:03 +01:00
commit fca667e380
7 changed files with 697 additions and 0 deletions

18
src/lib.rs Normal file
View File

@@ -0,0 +1,18 @@
// use colored::Colorize;
mod benchmark;
mod slimes;
pub fn application_header() -> &'static str {
let ascii_art = r#"
.---.
.' '. < CPU SLIME >
/ ^ ^ \
: v : (Benchmarking)
| |
\ /
'._____.'
"#;
// println!("{}", ascii_art.bright_green().bold());
ascii_art
}