use libutils_problem::Problem;
use libutils_log::Log;
pub struct Layout {
pub problems: Log<Problem> = Log::new()
}
impl Layout {
#[inline]
pub fn view(&self) -> String {return self.problems.iter().map(|problem| problem.to_string()).collect::<Vec<String>>().join("\n\n")}
}