note
	description: "Cars"
	author: "JSO"
	date: "$Date$"
	revision: "$Revision$"

class interface
	CAR

create 
	make

feature -- Queries

	name: STRING_8
	
feature -- Equality

	is_equal (other: like Current): BOOLEAN
			-- Is current car equal to 'other'?
	
feature -- Debug output

	debug_output: STRING_8

	out: STRING_8
			-- New string containing terse printable representation
			-- of current object
	
end -- class CAR

Generated by ISE EiffelStudio