/// Reads an environment variable, and goes into panic if it is not found.
/// ```rs
/// fn main() {
/// println!("MAX_DUCK_SIZE is `{}`", read_env!(MAX_DUCK_SIZE));
/// }
/// ```
/// Does the same thing as `read_env`, but creates `static` variable for the environment var.
/// ```rs
/// static_env!(MAX_DUCK_SIZE);
/// // Which will be expanded into
/// // static MAX_DUCK_SIZE: LazyLock<String> = ...;
///
/// fn main() {
/// println!("MAX_DUCK_SIZE is {}", *MAX_DUCK_SIZE);
/// }
/// ```