Since HelloWorld worked for me, I tried to output the command line
arguments as a string. Consequently, the program now looks like:
(ns cljshello.core
(:require [cljs.nodejs :as nj]))
(defn -main [& argv]
(println (str "Hello, World!" (.-argv nj/process) "\n")))
(set! *main-cli-fn* -main)
On Saturday, 17 November 2012 19:52:39 UTC-5, David Nolen wrote:
>
> What is the error under simple optimizations? Errors under advanced
> optimizations are not particularly informative :)
Good point, sorry.
Every minor change, is leading to significant differences, so I'm trying to
strip it
What is the error under simple optimizations? Errors under advanced
optimizations are not particularly informative :)
Thanks
On Saturday, November 17, 2012, Paul Gearon wrote:
> Looking at the Clojurescript page on Github I can't find the appropriate
> place to ask about potential bugs unles
I just submitted the first one few hours ago:
here is the page where I found the link to jira
http://clojure.org/contributing
and here is the jira url
http://dev.clojure.org/jira/secure/Dashboard.jspa
mimmo
On Nov 17, 2012, at 8:36 PM, Paul Gearon wrote:
> Looking at the Clojurescript page
Looking at the Clojurescript page on Github I can't find the appropriate
place to ask about potential bugs unless it's here. Can anyone help
please? (David?)
Meanwhile, in case it's the correct place, I've tried the following as a
simple test to run on Node.js:
---
(ns jpp.core)
(defn -mai