From 7c25b0069d02e8f1836ec1b6b1c07fa6815b2ce0 Mon Sep 17 00:00:00 2001 From: fdai7374 Date: Thu, 2 Feb 2023 19:45:35 +0100 Subject: [PATCH] feat: add Patrick Star quotes --- src/builtins/quote.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/builtins/quote.rs b/src/builtins/quote.rs index 19b47df..f5f2f41 100644 --- a/src/builtins/quote.rs +++ b/src/builtins/quote.rs @@ -34,6 +34,10 @@ const QUOTES: &[(&str, &str)] = &[ ("If a tax cut increases government revenues, you haven't cut taxes enough.", "Milton Friedman"), ("The true test of any scholar's work is not what his contemporaries say, but what happens to his work in the next 25 or 50 years. And the thing that I will really be proud of is if some of the work I have done is still cited in the text books long after I am gone.", "Milton Friedman"), ("I’m in favor of legalizing drugs. According to my values system, if people want to kill themselves, they have every right to do so. Most of the harm that comes from drugs is because they are illegal.", "Milton Friedman"), + ("Is mayonnaise an instrument?", "Patrick Star"), + ("I can't see my forehead!", "Patrick Star"), + ("I wumbo, you wumbo, he she we wumbo.", "Patrick Star"), + ("My parents think I'm dumb more than a sack of diapers.", "Patrick Star"), ]; impl Builtin for Quote {