Created
January 30, 2016 18:59
-
-
Save brake/d921c268def7294e9a5d to your computer and use it in GitHub Desktop.
Create and print sequence of 5 random integers from 0 to (inclusive) 127
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (doseq [n (repeatedly 5 #(rand-int 128))] | |
| (printf "%02X (%d)\n" n n)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment