Change io crate & add a small shell

This commit is contained in:
2026-03-25 20:45:11 +01:00
parent f966a1239e
commit ae0593c972
98 changed files with 11102 additions and 810 deletions

View File

@@ -0,0 +1,21 @@
// #![feature(survos_std)]
use owo_colors::OwoColorize;
fn main() {
println!(
"{}",
r" ___ ___ ___ ___ ___
/ /\ /__/\ / /\ ___ / /\ / /\
/ /:/_ \ \:\ / /::\ /__/\ / /::\ / /:/_
/ /:/ /\ \ \:\ / /:/\:\ \ \:\ / /:/\:\ / /:/ /\
/ /:/ /::\ ___ \ \:\ / /:/~/:/ \ \:\ / /:/ \:\ / /:/ /::\
/__/:/ /:/\:/__/\ \__\:/__/:/ /:/______ \__\:/__/:/ \__\:/__/:/ /:/\:\
\ \:\/:/~/:\ \:\ / /:\ \:\/:::::/__/\ | |:\ \:\ / /:\ \:\/:/~/:/
\ \::/ /:/ \ \:\ /:/ \ \::/~~~~\ \:\| |:|\ \:\ /:/ \ \::/ /:/
\__\/ /:/ \ \:\/:/ \ \:\ \ \:\__|:| \ \:\/:/ \__\/ /:/
/__/:/ \ \::/ \ \:\ \__\::::/ \ \::/ /__/:/
\__\/ \__\/ \__\/ ~~~~ \__\/ \__\/ "
.cyan()
);
}