Course of Raku / Objects, I/O, and exceptions / Classes and objects / Classes / Type objects and instances

Quiz — Classes

What does the following program print? Remember that WHAT reports the type, while defined is what tells a type object apart from an instance.

class Dog {
}

say Dog.WHAT === Dog.new.WHAT;
0False
1True
0(Dog)
0an error

Course navigation

Type objects and instances   |   Defined or not