/*! Crate prelude with all the extras
# Usage
```rust
use tear::extra::*;
```
# Description
In addition to all the symbols in `prelude`, it exports the following:
- Moral and its variants Good and Bad
- Looping
- Judge and Return traits
- Utility macros `last!`, `next!` and `resume!`
- `gut` function, and `Maru` type
*/
pub use crate*;
// Extra types that might name conflict
pub use crate;
pub use crate::;
// Extra macros
pub use crate::;
// Gutting
pub use crategut;
pub use crateMaru;