1
2
3
4
5
6
7
8
9
10
11
12
//! # common functionalities
//!
//! This crate is part of [`pt`](../libpt/index.html), but can also be used as a standalone
//! module.
//!
//! This crate implements core functionality useful for many use cases, such as macros,
//! formatting functions and more.

/// macros to make things faster in your code
pub mod macros;
/// some general use printing to stdout tools
pub mod printing;