From f6c94cbb36993fd5d80c34c318e523671b8b171a Mon Sep 17 00:00:00 2001 From: ngradwohl Date: Wed, 17 Jul 2019 06:42:11 +0200 Subject: [PATCH] added new "start" function --- examples/g_spiral1.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/g_spiral1.lisp b/examples/g_spiral1.lisp index 741ef27..0fc82e6 100644 --- a/examples/g_spiral1.lisp +++ b/examples/g_spiral1.lisp @@ -1,7 +1,8 @@ ; animated recusive spiral -; click on "toggle animation" ; by @local_guru ( + (def start (get ronin "animate")) + (clear) (defn rec (v) (if (gt v 0) @@ -23,5 +24,6 @@ ) ) ) +(start) (rec 300) )