Creating a package would consist of a package statement as follows:
package software;
placed at the beginning of every file to be included in that package.
Importing a package of programs to be used in the code in a class requires an import statement such as:
import software.*;
The "*" character provides direction to import all classes in that package.