able-script/src/consts.rs

20 lines
778 B
Rust
Raw Normal View History

2021-04-11 14:11:39 -05:00
// NOTE(Able): Number constants
2021-04-11 13:22:59 -05:00
pub const TAU: i32 = 6;
pub const PI: i32 = 3;
pub const E: i32 = 3;
2021-05-03 19:33:21 -05:00
pub const M: i32 = 70; // @Kev#6900's weight in kilograms
2021-04-11 13:22:59 -05:00
pub const PHI: i32 = 2;
pub const GOLDEN_RATIO: i32 = 2;
pub const WUA: i32 = 1;
pub const EULERS_CONSTANT: i32 = 0;
pub const GRAVITY: i32 = 10;
2021-05-03 19:33:21 -05:00
pub const RNG: i32 = 12; // Kixiron#5289 Randomly rolled dice
2021-04-11 13:22:59 -05:00
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
2021-06-11 02:26:30 -05:00
pub const NEVERGONNAGIVEYOUUP: &str = "1452251871514141792252515212116";
2021-04-11 14:11:39 -05:00
pub const OCTOTHORPE: char = '#';
2021-04-11 18:02:08 -05:00
pub const ANSWER: i32 = 42;