var Flo : Florist; Beth : Wife; Ken : Dentist; begin Flo.sendFlowersTo(myFriend); { will work } Beth.sendFlowersTo(myFriend); { will also work } Ken.sendFlowersTo(myFriend); { will probably not work } end;