Re: Current status of Clojure on Android?

2013-01-22 Thread MC Andre
> I wrote a wrapper for the Apache Cordova (Phonegap) API recently, so that > it could be used with ClojureScript. I got Hello World, etc up and running > without much fuss. There are however two issues: > > 1. Also a slow start-up time, since Phonegap already has resources to > load, and then

iOS and Windows RT support?

2013-01-22 Thread MC Andre
What's the state of iOS and Windows RT support for Clojure? It would be awesome to write iPhone and Surface apps in Clojure! Is there a .NET port of Clojure we could use to write Windows 8 Metro apps? -- You received this message because you are subscribed to the Google Groups "Clojure" group.

Support for pmap?

2013-02-25 Thread MC Andre
Does ClojureScript support pmap? -- -- 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

Listing more intuitive install options on the Clojure Downloads page

2013-03-01 Thread MC Andre
I'm sure that Clojure users, especially novices, would appreciate these being listed as well-supported options on the official downloads page : * Windows "chocolatey install clojure" * Mac OS X "brew install clojure" * Ubuntu "apt-get install clojure" -- -- You r

Windows MSI installer for a msysGit-compatible Clojure?

2013-03-01 Thread MC Andre
I love Clojure, but I'm having trouble getting it installed in Windows (sometimes I use Windows). Can someone provide an MSI installer for Clojure that adds a "clj.exe" to PATH? I ask for an MSI and a "clj.exe", because every way I've tried to setup Clojure has failed: * "chocolatey install c

Hello World not found

2013-03-05 Thread MC Andre
Clojure can't find hello.clj in the current directory when run as "clj -m hello". Trace: C:\Documents and Settings\apenneba\Desktop>type hello.clj (ns hello (:gen-class)) (defn -main [& args] (println "Hello World!")) C:\Documents and Setti

Clojure *compile-path* not set properly

2011-03-07 Thread MC Andre
Clojure can't find and compile my scripts unless I augment the compile path. Specs: Clojure 1.2.0 MacPorts 1.9.2 Mac OS X 10.6.6 $ cat hello.clj #!/usr/bin/env clj (ns hello) (println "Hello World!") $ clj hello.clj Hello World! $ clj Clojure 1.2.0 user=> (compile 'hello) Hello World! java.io.I