Re: How create dynamic var programmatically

2012-09-07 Thread Marc Dzaebel
works, thanks! -- 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

Re: How create dynamic var programmatically

2012-09-05 Thread Andrei Zhlobich
Try: (.setDynamic (intern *ns* 'a 0)) -- 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 unsubscrib

How create dynamic var programmatically

2012-09-04 Thread mdzaebel
(intern *ns* 'a 0) creates a non-dynamic var. However, how do I create a dynamic one like (def ^:dynamic a) does? -- 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 m