bluejay_printer/lib.rs
1mod argument;
2pub mod definition;
3mod directive;
4pub mod executable;
5mod string_value;
6pub mod value;
7
8use std::fmt::{Error, Write};
9
10fn write_indent<W: Write>(f: &mut W, indentation: usize) -> Result<(), Error> {
11 write!(f, "{: >1$}", "", indentation)
12}
13
14const INDENTATION_SIZE: usize = 2;