fixing tiny bugs

This commit is contained in:
2023-12-28 11:55:29 +01:00
parent 55f728f657
commit 2954990a27
5 changed files with 24 additions and 14 deletions

10
Classes/BuboString.sc Normal file
View File

@ -0,0 +1,10 @@
+ String {
/*
* Interface with Bank.sc to return a sample faster
*/
sample {
arg sampleNumber = 2;
^Bank(this)[sampleNumber];
}
}