I'm trying to figure out why when I require('cljs.core') in a javascript file, the hello world example doesn't work.
hello.js goog.require('cljs.core'); ;;<--- If I delete this line, then everything works. goog.require('goog.dom'); function sayHi() { var myc__2284 = goog.dom.createDom("canvas", {"width":"300","height":"225","style":"border:1px dotted"}); var context__2285 = myc__2284.getContext("2d"); context__2285.font = "bold 12px sans-serif"; context__2285.fillText("hello wurld",50,50); return goog.dom.appendChild(document.body,myc__2284); }; index.html <!DOCTYPE html> <html> <head> <script type="text/javascript" src="goog/base.js"></script> <script type="text/javascript" src="hello.js"></script> </head> <body onload="sayHi()"> </body> </html> I was trying to cut away at what clojurescript outputs since I was trying to rule out what line was breaking the code. And oddly enough, it was the require line. What's going on here? -- 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