--
Note that posts from new members are moderated - please be patient with your first post.
---
You received this message because you are subscribed to the Google Groups "ClojureScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojurescrip...@googlegroups.com.
To post to this group, send email to clojur...@googlegroups.com.
Visit this group at http://groups.google.com/group/clojurescript.
Some basic and potentially naive questions:I realize you need a bunch of things loaded in the browser to convert CLJS code to JS and eval it. I'm wondering about the below:1. Does this means that i can run CLJS in the browser without the Google Closure library or is the compiler dependent on that?
2. Is it possible now to load CLJS libraries into JS projects with similar ease to loading JS libraries/modules?
I've looked at the Optional Self-hosting section on the ClojureScript Github wiki. Would it be possible to have a more step-by-step set of instructions for experimentig with self hosting OR could someone point me to a resource which provides one?
Thanks,
Kinley
Hi all,
I've looked at the Option Self-hosting section section on the ClojureScript Github wiki. Would it be possible to have a more step-by-step set of instructions for self hosting OR could someone point me to resource which provides one?
Thanks,
Kinley
Thanks for responding, and apologies for the double and poorly edited posts.
So, I'm going to roll up my sleeves and see if I can bungle my way through this. :)
Thank you for the awesome work you've been putting in on ClojureScript!
Kinley
I see the need to load source file with macros (so that they can be evaluated and change code), but if my namespace includes - how its source is used for compilation?
Example:
(ns my.ns
(:require [foo.bar :as bar]))
(defn say-hello [name]
(bar/print "Hello" name))
Why source of foo.bar is needed to compile this code? I believe (bar/print ...) will be compiled to foo.bar.print(...) any way.
You received this message because you are subscribed to a topic in the Google Groups "ClojureScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/clojurescript/q9UaYC-X8XE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to clojurescrip...@googlegroups.com.