From 87d8289e6ab3732c0cab4e75c60b1d6d07a24d42 Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 12:32:36 -0300 Subject: [PATCH] fix code --- src/rustint/core.clj | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/rustint/core.clj b/src/rustint/core.clj index 3115cb2..5b6f803 100644 --- a/src/rustint/core.clj +++ b/src/rustint/core.clj @@ -1988,7 +1988,15 @@ ; false ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn identificador? [arg] - true + (and + (not (palabra-reservada? arg)) + (contains? + (set + (map char (range 97 122)) + ) + (first (name arg)) + ) + ) ) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;