1
2
3
4
5
6
7
8
9
10
11
12
mod argument;
pub mod definition;
mod directive;
mod string_value;
pub mod value;
use std::fmt::{Error, Write};

fn write_indent<W: Write>(f: &mut W, indentation: usize) -> Result<(), Error> {
    write!(f, "{: >1$}", "", indentation)
}

const INDENTATION_SIZE: usize = 2;