new

new NAME( EXPRESSION ...)
This form causes a new instance (object) of the named class to be created. The constructor will be run with the given values (evaluated from left to right) as its arguments. These values must be the correct number and type as specified by the constructor. The result of this expression is an object of the named class.

ProfessorJ Intermediate Language