Package
A package is a module that can be added to any program to add additional options, features, or functionality. A package can often be added to program by using an "include" or "import" type of statement, as in the below Java code.
import java.io.FileReader;
The FileReader package is used for reading character streams, useful for obtaining user input from a console.
Also see: Programming definitions
