Benoit Giannangeli
Benoit Giannangeli
Is it possible to have individual FX for each voice? Or to play a single note with an effect?
Here's the paragraph > fetch relations can also provide a preloader to allow for the data to be loaded over an array of objects. **The preloader function recieves as arguments:...
I'd love to use this font for coding, would it be possible for you to make a monospaced version?
In the context in which I'm using argparse, it would be helpful if I could set an option to not exit when using `--help` or when the parsing fails.
If you define a hierarchy of command it should be organized the same way in the result table. It would avoid name collision between command names and argument names of...
```buzz object A { fun toString() > str -> "hello"; } print("{A{}}"); | -> "hello"; ```
```buzz [num] numbers = []; {str, str} map = {}; fun count([str] list) > num -> list.len(); count([]) == 0; ```
- [ ] Package spec - [ ] Fetching from several sources: public registry, git repository - [ ] List dependencies and fetch them - [ ] Resolve conflicts
```buzz object Stuff { Buffer buffer, fun ~destroy() > void { buffer.deinit(); } } ```
```buzz fun willFail() > void !> str { throw "fail"; } fun main([str] args) > void { willFail() catch void; } ```