Feat: all and noall words

This commit is contained in:
2026-02-23 23:04:43 +01:00
parent 8b745a77a6
commit 8f131b46cc
9 changed files with 236 additions and 5 deletions

View File

@@ -43,6 +43,26 @@ pub(super) const WORDS: &[Word] = &[
compile: Simple,
varargs: false,
},
Word {
name: "all",
aliases: &[],
category: "Sound",
stack: "(--)",
desc: "Apply current params to all sounds",
example: "500 lpf 0.5 verb all",
compile: Simple,
varargs: false,
},
Word {
name: "noall",
aliases: &[],
category: "Sound",
stack: "(--)",
desc: "Clear global params",
example: "noall",
compile: Simple,
varargs: false,
},
// Sample
Word {
name: "bank",