From dc36a57eb6440e1f7ebdfd82067133cf3e260cbe Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 09:30:59 -0300 Subject: [PATCH] fix code --- src/rustint/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 6b8f7b2..aba69fa 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2132,7 +2132,7 @@ ; 0.5 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn dividir [arg1 arg2] - (/ arg1 arg2) + (quot arg1 arg2) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;