From aa0ce8fa8a284bf880c23df01236415fbbccfeb0 Mon Sep 17 00:00:00 2001
From: Felix Roos
Date: Fri, 14 Feb 2025 09:10:02 +0100
Subject: [PATCH] tweak zilp
---
kabelsalat/lispykabel.html | 227 +++++++++++++++++++++++++------------
1 file changed, 157 insertions(+), 70 deletions(-)
diff --git a/kabelsalat/lispykabel.html b/kabelsalat/lispykabel.html
index 670d982..faa96a6 100644
--- a/kabelsalat/lispykabel.html
+++ b/kabelsalat/lispykabel.html
@@ -72,7 +72,7 @@ 🌱 lispy modular synth
as a target.
-
+
💡 hit ctrl+enter to update the code.
@@ -80,27 +80,33 @@ 🌱 lispy modular synth
inspired by common lisp, i've added some more goodies to the language:
- - defun: a function definition
- - defparameter: a global variable definition
- - lambda: an anonymous function
+ - fn: an anonymous function
+ - def: a global variable definition
+ - x: y shortcut for setting variables
+ - :x shortcut for gettin variables
-
+> out)
+-->
-
-
+
+(imp > seq 0 3 7 12 > add 42 > midinote
+> pulse .2
+> mul (imp > ad .01 .15)
+> out)
+ -->
+
+