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) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;