From REALbasicWiki
The New operator is used to create an instance of an object or, in some cases, a delegate. New returns an instance of the class or delegate type passed. It should never return a nil object.
dim w as new Window1
dim c as new Class1("stringParameter")