isa
statement
The statement <VAR> isa <TYPE>
is used to identify the <VAR>
as an instance of <TYPE>
.
Inserting instance of type
The isa
keyword can be used to create a new instance of a given type.
insert $person isa person;
Deleting instance of type
The isa
keyword is not used to delete an instance of type. Simply delete the variable that is bound to the instance.
delete $person;