started on the bufcomposemacro
parent
06493ee1c3
commit
8de096977a
@ -0,0 +1,28 @@
|
||||
// + FluidBufCompose {
|
||||
|
||||
~concat = {
|
||||
arg x;
|
||||
x.postln;
|
||||
}
|
||||
// }
|
||||
|
||||
~concat.value("ilove 10")
|
||||
|
||||
|
||||
|
||||
~concat = {
|
||||
arg x;
|
||||
if(x.class != Array, {"Error".postln;}, {
|
||||
for (0,x.size - 1, {arg i;
|
||||
x[i].postln;
|
||||
});
|
||||
});
|
||||
}
|
||||
// }
|
||||
|
||||
~concat.value("ilove 10")
|
||||
|
||||
~concat.value(b)
|
||||
|
||||
|
||||
/////
|
||||
Loading…
Reference in New Issue