This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn marine_line() -> String { | |
use rand::{seq::SliceRandom, Rng}; | |
let marine_life = ["🐳", "🐠", "🦈", "🐙", "🐡", "🐬", "🐟", "🦀", "🐋"]; | |
let water = [ | |
"\x1B[38;2;0;100;200m≈\x1B[0m", | |
"\x1B[38;2;10;110;210m≈\x1B[0m", | |
"\x1B[38;2;20;120;220m≈\x1B[0m", | |
"\x1B[38;2;30;130;230m≈\x1B[0m", | |
"\x1B[38;2;40;140;240m≈\x1B[0m", |