#![doc=include_str!("../README.md")]modprinter;usemf2_parser::ast::Message;usemf2_parser::SourceTextInfo;useprinter::Printer;/// Print the given message as a string. If [SourceTextInfo] is provided, the
/// printer will use it to attempt to preserve some original empty line
/// placements.
pubfnprint(ast:&Message, info:Option<&SourceTextInfo>)-> String{Printer::new(ast, info).print()}