On Sat, Oct 11, 2008 at 20:34, CuppoJava <[EMAIL PROTECTED]> wrote: > If anyone is using Windows, please share what environment you're using > to program in.
I am using Emacs and Slime, and that works rather well. Emacs for Windows: http://ourcomments.org/cgi-bin/emacsw32-dl-latest.pl Slime: http://common-lisp.net/project/slime/ Emacs Clojure mode and Slime for Clojure: http://clojure.codestuffs.com/ My .emacs contains the following Clojure specific Slime setup code. The paths need to be modified, and I use swank-clojure-binary instead of the Jar method that is described as first choice in the swank-clojure documentation. ;; clojure (add-to-list 'load-path "h:/clojure/clojure-mode") (require 'clojure-auto) (load-library "clojure-mode") (add-to-list 'load-path "h:/clojure/swank-clojure") (setq swank-clojure-binary "h:/clojure/clojure.sh") (require 'swank-clojure-autoload) Hope this helps, Hans --~--~---------~--~----~------------~-------~--~----~ 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 To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---