In Simula, you would create a new object of a given class (which is also known as instantiating an instance of that class) using the keyword NEW followed by the name of the class, like this: MyObject :- new MyClass; where :- is known as the reference assignment operator

