From c4ad2bd78b866f455e441335c7871f729a11d315 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:55:36 -0300 Subject: [PATCH] fix code --- src/rustint/core.clj | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 413fd2b..cd32748 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2179,11 +2179,18 @@ ) (defn get-rust-formatters [s] + (println s) (flush) (map last (re-seq #"\{:?(.\d)?\}" s)) ) (defn convertir-formato-impresion [args] - args + (let [clojure-fspecifiers ( + map + especificador-formato + (rest args) + (get-rust-formatters (first args)) + ) + ] args) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;