I have two functions f1() and f2() I want f1() and f2() to execute alternately, without using a loop: Not like this : loop { f1(); f2(); }
I just want to use