1
2
3
4
5
6
7
8
#![feature(box_syntax)]

pub(crate) mod utils;

pub use utils::{
    number::{self, catalan_number},
    tree::{self, catalan_trees},
};