|
|
|
Fiber instructionlist
command. It creates a new Fiber, which is a unit of pseudo-parallel execution of Logo code, like a Thread. Fibers appear to be a good deal faster than Threads, but you must create a Thread inside of which you only can create Fibers. At the end of the Thread which has Fibers inside must have a
repeat 1 []command appended, else it will probably crash at exit.
Thread [Fiber [repeat 10 [pr repcount]] repeat 1 []] |
|
|
|