zoomer 0.1.2

Making Rust a true modern language™️ with revolutionary macros.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod _bool;
mod _emote;
mod _unsafe;
mod _yeet;

/// Yes, this module does in fact do nothing. But it's working as intended.
pub mod prelude {
    pub use crate::_bool::*;
    pub use crate::_emote::*;
    pub use crate::_unsafe::*;
    pub use crate::_yeet::*;
}