Java: multithreading basics

Example:

Thread thread = new Thread();
Java provides built-in support for multithreaded programming.

Solution:

thread.start();  // Starts the thread execution

Beginner's Guide to Java