Crates.io | fail_whale |
lib.rs | fail_whale |
version | 0.1.0 |
source | src |
created_at | 2022-03-02 02:33:37.009368 |
updated_at | 2022-03-02 02:33:37.009368 |
description | Easily print a fail whale! |
homepage | |
repository | https://github.com/StephenMP/fail-whale |
max_upload_size | |
id | 541932 |
size | 2,934 |
▄████████████▄▐█▄▄▄▄█▌
█████▌▄▌▄▐▐▌██▌▀▀██▀▀
███▄█▌▄▌▄▐▐▌▀██▄▄█▌
▄▄▄▄█████████████
Easily print a fail whale
use fail_whale::*;
// When something bad happens
fail_whale::print();
/*
Prints to stdout
▄████████████▄▐█▄▄▄▄█▌
█████▌▄▌▄▐▐▌██▌▀▀██▀▀
███▄█▌▄▌▄▐▐▌▀██▄▄█▌
▄▄▄▄█████████████
*/
use fail_whale::*;
// When something bad happens
fail_whale::print_with_message("Oh no!");
/*
Prints to stdout
▄████████████▄▐█▄▄▄▄█▌
█████▌▄▌▄▐▐▌██▌▀▀██▀▀
███▄█▌▄▌▄▐▐▌▀██▄▄█▌
▄▄▄▄█████████████
Oh no!
*/