cl-ast: always pretty-print decimal for floats
This commit is contained in:
		| @@ -50,7 +50,7 @@ mod display { | ||||
|                 Literal::Bool(v) => v.fmt(f), | ||||
|                 Literal::Char(v) => write!(f, "'{}'", v.escape_debug()), | ||||
|                 Literal::Int(v) => v.fmt(f), | ||||
|                 Literal::Float(v) => f64::from_bits(*v).fmt(f), | ||||
|                 Literal::Float(v) => write!(f, "{:?}", f64::from_bits(*v)), | ||||
|                 Literal::String(v) => write!(f, "\"{}\"", v.escape_debug()), | ||||
|             } | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user