Guest User

Untitled

a guest
Aug 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (ns tacahiroy
  2. (:use [clojure.contrib.str-utils2 :only (chomp blank?)]))
  3.  
  4. (defn get-user-input []
  5. (loop []
  6. (print "key> ")
  7. (flush)
  8.  
  9. (def input (chomp (read-line)))
  10. (if (not(blank? input))
  11. input
  12. (recur))))
Add Comment
Please, Sign In to add comment