Skip to content

Instantly share code, notes, and snippets.

@vimfu
Last active October 24, 2021 09:53
Show Gist options
  • Save vimfu/dfc038efd1997e14c7a24f0a8ec14284 to your computer and use it in GitHub Desktop.
Save vimfu/dfc038efd1997e14c7a24f0a8ec14284 to your computer and use it in GitHub Desktop.
generate random string for vcode (digits)
(defn generate-rand-str
([] (generate-rand-str 4))
([n]
(apply str
(map
(fn [_] (rand-int 10))
(range n)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment