From 6d7fbb35147b399b1ed98da772bf5430dbdabf67 Mon Sep 17 00:00:00 2001 From: HTG-YT <39023054+HTG-YT@users.noreply.github.com> Date: Fri, 11 Jun 2021 15:19:27 +0800 Subject: [PATCH 1/2] add `interessant` and `funny` constants --- src/const.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/const.rs b/src/const.rs index 47c7385..b32f125 100644 --- a/src/const.rs +++ b/src/const.rs @@ -11,6 +11,8 @@ pub const GRAVITY: i32 = 10; pub const RNG: i32 = 12; // Kixiron#5289 Randomly rolled dice pub const STD_RNG: i32 = 4; //The standard random number is 4 (source: https://xkcd.com/221/) pub const INF: i32 = i32::max_value(); +pub const INTERESSANT: i32 = 114514; // HTGAzureX1212.#5959 interessant number +pub const FUNNY: i32 = 69; // HTGAzureX1212.#5959 funny number pub const OCTOTHORPE: char = '#'; pub const ANSWER: i32 = 42; From 6a6658fd75605b922d5050d4568c430909ac8e91 Mon Sep 17 00:00:00 2001 From: HTG-YT <39023054+HTG-YT@users.noreply.github.com> Date: Fri, 11 Jun 2021 15:26:30 +0800 Subject: [PATCH 2/2] add `nevergonnagiveyouup` constant --- src/const.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/const.rs b/src/const.rs index b32f125..3a206df 100644 --- a/src/const.rs +++ b/src/const.rs @@ -13,6 +13,7 @@ pub const STD_RNG: i32 = 4; //The standard random number is 4 (source: https://x pub const INF: i32 = i32::max_value(); pub const INTERESSANT: i32 = 114514; // HTGAzureX1212.#5959 interessant number pub const FUNNY: i32 = 69; // HTGAzureX1212.#5959 funny number +pub const NEVERGONNAGIVEYOUUP: &str = "1452251871514141792252515212116"; pub const OCTOTHORPE: char = '#'; pub const ANSWER: i32 = 42;