Next 0.0 What are threads? [Start]

What are threads?

Thread is an execution flow.

Single threaded programs have a single execution point (execution context) at any given time.

Multi-threaded programs have multiple execution points, i.e. different parts of the code may be executed at the same time.

Next Perl Threads [Start]