On Saturday, March 23, 2013 7:22:14 AM UTC-7, Oskar Kvist wrote: > > Hi! > > I saw this video http://www.youtube.com/watch?v=BES9EKK4Aw4 of Notch > coding on Minecraft while the game was running, and of course seeing the > changes in the running program. He used some kind of debug mode in his IDE > (I don't really know which IDE). I want to make a game, and I want to to > also be able to code while the program is running. >
I think Notch uses Eclipse, which allows you to hot load (reload) code on the fly (and I believe tweak state in the debugger but I haven't done that). Funny you should post this, I just watched a video yesterday that you might like to see, http://vimeo.com/14709925 He's using Emacs in that video. Eclipse has the Counterclockwise plugin for Clojure if you prefer. I definitely would recommend using something like those over a plain REPL. See also this SO answer, http://stackoverflow.com/a/5119355/216798 . You shouldn't have to mess with JVM settings but there are a few things to keep in mind doing interactive development. However it's probably best to get started with the links above and then come back here with specific questions. -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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 --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
