Eiffel Recipes

Chapter 1

Getting Started

Installing Eiffel is just as easy as installing other languages. [TODO]

1.1 Installing Eiffel

  1. Download and unzip Eiffel.zip from www.eiffel.org/downloads.
  2. Create the following environment variables
    1. ISE_C_COMPILER=msc
    2. ISE_EIFFEL= to be completed
    3. ISE_LIBRARY=to be completed
    4. ISE_PLATFORM=win64
  3. Add %ISE_EIFFEL%/studio/spec/%ISE_PLATFORM%/bin to the PATH.
Checking the Eiffel version.
$ ec -version
ISE EiffelStudio version 15.05.9.6836 GPL Edition - win64

1.2 Your First Eiffel Program

  1. Open Eiffel Studio
    1. $ estudio
    2. Create a basic application.
    3. Run

https://www.youtube.com/watch?v=jBMOSSnCMCk

1.2 Compiling Eiffel (ec)

1.3 Running a simple program (ec)