ad74f6b524
* Introduced: crossterm workspace, feature flags.
21 lines
702 B
Rust
21 lines
702 B
Rust
use super::variables::Position;
|
|
|
|
pub const WELCOME_MESSAGE: [&str; 6] = [
|
|
"__ __ .__ __ ",
|
|
"/ \\ / \\ ____ | | | | ______ _____ ____ ",
|
|
"\\ \\/\\/ // __ \\| | | |/ / _ \\ / \\_/ __ \\ ",
|
|
" \\ /\\ ___/| |_| < <_> ) Y Y \\ ___/ ",
|
|
" \\__/\\ / \\___ >____/__|_ \\____/|__|_| /\\___ > ",
|
|
" \\/ \\/ \\/ \\/ \\/ ",
|
|
];
|
|
|
|
pub const END_MESSAGE: [&str; 5] = [
|
|
"-----------------------",
|
|
" ",
|
|
" No routes (DONE) ",
|
|
" ",
|
|
"-----------------------",
|
|
];
|
|
|
|
pub fn print_stack_count(position: Position) {}
|