diff --git a/src/rustint/core.clj b/src/rustint/core.clj index ac1db21..6814d72 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2206,7 +2206,7 @@ (cond (number? arg) (float arg) (string? arg) (if (re-find #"^-?\d+\.?\d*$" arg) (float (read-string arg)) arg) - :else (arg) + :else arg ) )