main
ondra05 2022-07-24 21:56:44 +02:00
parent d3197ce463
commit f4b77f0270
1 changed files with 1 additions and 6 deletions

View File

@ -21,12 +21,7 @@ impl<'a> Display for Expr<'a> {
match self {
Self::List(list) => write_seq(f, list, "(", ")"),
Self::Vector(vec) => write_seq(f, vec, "[", "]"),
Self::Map(map) => write_seq(
f,
map.into_iter().map(|(k, v)| format!("{k} {v}")),
"[",
"]",
),
Self::Map(map) => write_seq(f, map.iter().map(|(k, v)| format!("{k} {v}")), "[", "]"),
Self::Symbol(sym) => write!(f, "{sym}"),
Self::Keyword(kw) => write!(f, ":{kw}"),
Self::Number(n) => write!(f, "{n}"),