You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// + 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)
|
|
|
|
|
|
/////
|