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.