This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;; mikio's solution to Simple Math | |
| ;; https://4clojure.com/problem/2 | |
| 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns net.n01se.Tree | |
| (:import (java.awt Point Graphics Frame Color) | |
| (java.awt.geom AffineTransform)) | |
| (:gen-class | |
| :extends java.applet.Applet)) | |
| ;--- recursive fractal drawing framework --- | |
| ; define min and max points for the logical stage | |
| (def minpoint (doto (Point.) (.setLocation 0 0))) |