#![doc = include_str!("readme.md")]
pub struct SchemeFormatter {
_indent_level: usize,
_indent_str: String,
}
impl SchemeFormatter {
pub fn new() -> Self {
Self {
_indent_level: 0,
_indent_str: " ".to_string(), }
}
pub fn format(&self, source: &str) -> String {
source.to_string()
}
}
impl Default for SchemeFormatter {
fn default() -> Self {
Self::new()
}
}