;; Get the first character and length of string user=> ((juxt first count) "Clojure Rocks") [\C 13]
;; Get the first character and length of string user=> ((juxt first count) "Clojure Rocks") [\C 13]
;; Get the first character and length of string user=> (def foo (juxt first count)) #'user/foo user=> (foo "Clojure Rocks") [\C 13]
Get the first character and length of string <code> user> (def foo (juxt first count)) #'user/foo user> (foo "Clojure Rocks") [\C 13] </code>