1
0

butt(1): code golfed

This commit is contained in:
Emma Tebibyte 2024-07-03 16:30:14 -06:00
parent a01da5ca34
commit d111500921
Signed by: emma
GPG Key ID: 06FA419A1698C270

View File

@ -16,12 +16,10 @@ fn main() {
println!("How big is your butt?");
stdin().read_line(&mut buf).unwrap();
let size = buf.trim().parse::<u8>().unwrap_or_else(|e| {
println!("{}", match buf.trim().parse::<u8>().unwrap_or_else(|_| {
eprintln!("Your butt cant be {}!", buf.trim());
exit(1);
});
println!("{}", match size {
}) {
0 | 1 | 2 => "Your butt is small Im not gonna smack it ",
3 => "Your butt is decently sized, if im super horny ill smack and maybe lick it",
4 => "Your butt is pretty big there, Why don't you come down and ill show it a good time!",