Just discovered a cool Chrome extension so that you can get proper syntax
highlighting when pasting code into your email.  It turns plain-old code
into something nice to read:

*Plain:*

(defn truthy?
  "Returns true if arg is logical true (neither nil nor false); otherwise
returns false."
  [arg]
  (if arg true false) )
(s/fdef truthy?
  :args ::s/any
  :ret boolean?)

*Nice:*


(defn truthy?
  "Returns true if arg is logical true (neither nil nor false); otherwise
returns false."
  [arg]
  (if arg true false) )
(s/fdef truthy?
  :args ::s/any
  :ret boolean?)


Find it in the Google Chrome web store:
https://chrome.google.com/webstore/detail/gmail-syntax-highlighting/pcipmnfalbiopheelcmpllcjciifkaeh

Alan

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to