added new "start" function

This commit is contained in:
ngradwohl 2019-07-17 06:42:11 +02:00
parent deb80276f5
commit f6c94cbb36

View File

@ -1,7 +1,8 @@
; animated recusive spiral ; animated recusive spiral
; click on "toggle animation"
; by @local_guru ; by @local_guru
( (
(def start (get ronin "animate"))
(clear)
(defn rec (defn rec
(v) (v)
(if (gt v 0) (if (gt v 0)
@ -23,5 +24,6 @@
) )
) )
) )
(start)
(rec 300) (rec 300)
) )