From cd1742b350044dc00fda27bf2f5a592eefbd407c Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 13:21:31 -0300 Subject: [PATCH] fix code --- src/rustint/core.clj | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 18babac..b67fe79 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -2168,10 +2168,9 @@ ; user=> (convertir-formato-impresion '("Las raices cuadradas de {} son +{:.8} y -{:.8}" 4.0 1.999999999985448 1.999999999985448)) ; ("Las raices cuadradas de %.0f son +%.8f y -%.8f" 4.0 1.999999999985448 1.999999999985448) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; TODO -;(defn convertir-formato-impresion -; -;) +(defn convertir-formato-impresion [args] + '("Hola, mundo!") +) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; DIVIDIR: Recibe dos numeros y devuelve su cociente, manteniendo su tipo.