If you are a user of Clojure, ClojureScript, or ClojureCLR, we are greatly
interested in your responses to the following survey:
https://www.surveymonkey.com/r/clojure-2015
The survey contains four pages:
1. General questions applicable to any user of Clojure, ClojureScript, or
ClojureCLR
2. Q
What does this question mean, exactly?
6. What types of applications do you use Clojure, ClojureScript, or
> ClojureCLR in?
>
> Company-wide/Enterprise
> Departmental
> Team
> Personal
- James
On 4 December 2015 at 16:31, Alex Miller wrote:
> If you are a user of Clojure, ClojureScript, or Cl
Yea :)
2015-12-04 1:49 GMT+01:00 Mimmo Cosenza :
> thanks. You rock
> mimmo
>
>> On 04 Dec 2015, at 01:10, Edward Knyshov wrote:
>>
>> Congratulations! You made a great work.
>>
>> --
>> You received this message because you are subscribed to the Google
>> Groups "Clojure" group.
>> To post to th
"Emacs + inferior-lisp" should be renamed to "Emacs + inf-clojure".
clojure-mode no longer works with inferior-lisp.
On 4 December 2015 at 16:44, James Reeves wrote:
> What does this question mean, exactly?
>
> 6. What types of applications do you use Clojure, ClojureScript, or
>> ClojureCLR in?
I took it to mean "How many people are working on your Clojure project?"
On Fri, Dec 4, 2015 at 8:44 AM, James Reeves wrote:
> What does this question mean, exactly?
>
> 6. What types of applications do you use Clojure, ClojureScript, or
>> ClojureCLR in?
>>
>> Company-wide/Enterprise
>> Departm
I'm not sure how to print a macroexpand on macros that defined in macrolet
or symbol-macrolet.
with normal macros, I can do:
(defmacro test-macro [] '(+ 1 2))
(pprint (macroexpand-1 '(test-macro)))
;; (+ 1 2)
;; nil
but with macrolet or symbol-macrolet:
(symbol-macrolet [(b [] '(+ 1 2))]