Add the parsers to parse keys.
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-10-22 17:54:16 +03:00
parent 79ae13aa5a
commit 5a4b88bd08
5 changed files with 111 additions and 1 deletions
@@ -0,0 +1,9 @@
(ns cipher-analytical-machine.parsers.parsers
(:require [cheshire.core :as cc])
(:gen-class))
(defn unsigned-int?
[str]
(if (re-matches #"\d+" str)
true false))