What is a concurrent language?

java

Solution

It means that threads and synchronization are built into the language, rather than being part of a library that you may include (like PThreads for C).

Problem

From the Java Language Specification: The Java™ programming language is a general-purpose, concurrent, class-based, object-oriented language. What is a concurrent language?

Original source