{" "} Programming Help for Eiffel Language

Introduction to Eiffel Programming Language

Eiffel Programming Language is a Object oriented Programming Language. It is designed by Bertrand Meyer and Eiffel Software.

The Program of Eiffel consists of an attribute number of classes. One of the classes has to be the root className of the program and it has also root procedures. There are some keywords in Eiffel Programs which are reserved like className, create, features, do and end.

Example of Eiffel Programming Language

The example will simply print hi..how r u?:

{`
className
HEY
create
make
feature
make
do
io.put_string ("hi ...how r u?")
io.put_new_line
end
end
`}

How to learn Eiffel Programming Language

Tutorial for Eiffel Programming Language:

Videos for Eiffel Programming Language