/**
 * PRAXIS-INFO
 * Now that we understand how inheritance leads to code reuse from super types,
 * we will study how it should and should not be used, and its relationship with
 * IS-A and assignment.
 * 
 * NAVIGATION-INFO
 * TypeCheckingExamples
 * LineInheritingFromPoint
 * Locatable
 * PointInheritingFromLocatable
 */

package lectures.inheritance.is_a;
import util.annotations.WebDocuments;