xipd

programming language for audio processing that compiles to PureData
git clone https://git.ce9e.org/xipd.git

commit
2093dd6b6a2311f324bab65c8ce0200b4eeb742a
parent
f450786ac49b69fbdef78068e8b090c8121857f9
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-09-02 06:47
add some binary operators

Diffstat

M xipd/parser.py 4 ++++

1 files changed, 4 insertions, 0 deletions


diff --git a/xipd/parser.py b/xipd/parser.py

@@ -10,6 +10,10 @@ OPERATORS = [
   10    10 	('+', 11),
   11    11 	('-~', 11),
   12    12 	('-', 11),
   -1    13 	('<<', 10),
   -1    14 	('>>', 10),
   -1    15 	('&', 7),
   -1    16 	('|', 5),
   13    17 ]
   14    18 
   15    19