Fiber

Help Contents Control Structures Fiber
Thread yield

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.

Example:

Thread [Fiber [repeat 10 [pr repcount]] repeat 1 []]

See testfiber.lg for more examples!

Examples:

References:

Thread yield