compris 0.0.11

Composite Primitive Schema (CPS) for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(unused)]

use depiction::*;

pub fn heading(heading: &str, first: bool) {
    let theme = Theme::default();
    if !first {
        println!();
    }
    println!("{}:", theme.heading(heading));
}