9 Oct
2020
9 Oct
'20
7:49 a.m.
Hi,
From the manual today I learn that functions can be called in a row with: () => foo => bar; I would like directly spork functions in a row, is there a way to do something like: spork~ () => foo => bar;
I can spork an extra function to make the call Thanks, federico Sample code: // ==== 200::ms => dur beat; [8, 4] @=> int parts[]; fun void foo() { <<< "playing foo" >>>; parts[0] * beat => now; } fun void bar() { <<< "playing bar" >>>; parts[1] * beat => now; } // spork~ () => foo => bar; // "only function calls can be sporked" error // extra function to make the call fun void testPlay() { () => foo => bar; } spork~ testPlay(); while(true) 200::ms => now;
1498
Age (days ago)
1498
Last active (days ago)
0 comments
1 participants
participants (1)
-
federico lopez