Always in Smalltalk and Java, and sometimes in other languages, objects are created dynamically using the ``new'' operator.
d <- Card new. "Smalltalk example" Card aCard; // Java example aCard = new Card();