Search found 1 match
- Wed Jan 12, 2011 4:59 am
- Forum: Common Lisp
- Topic: 2D graphics/turtle lib suitable for kids?
- Replies: 17
- Views: 53741
Re: 2D graphics/turtle lib suitable for kids?
Hello. I know: this is the Common Lisp section -- but: I tried a turtle interface via Clojure . And it worked very well, without large programming work. Here is a small code example: (import '(ch.aplu.turtle Turtle)) (def t1 (new Turtle)) (defn mt [] (dotimes [_ 50] (.left t1 110) (.forward t1 100))...