Eiffel The Language
Setting It All Up
Getting Started
Design and Documentation
Miscellaneous
- Old Site (login)
Eiffel The Language
Setting It All Up
Getting Started
Design and Documentation
Miscellaneous
This is an old revision of the document!
estudio17.05
does not create a void-safe project by default (later versions may do so).
red> eiffel-new New Eiffel void-safe project name: calendar red> ls calendar
Instead of using the Settings in the IDE, you may download the following zip file:
Eiffel 17.05 Void Safe Starter Project
If you unzip it you will see
starter17.05/ ├── eiffel-new └── project ├── model ├── project.ecf ├── root │ └── root.e └── tests └── tests.e
eiffel-new
is a python3 script (make sure it is executable) that will change the name project
to one of your choice (say calendar
).
> ./eiffel-new New Eiffel void-safe project name: calendar
Assuming python3 is installed on your system, the ne name of the project will be calendar
.
calendar ├── calendar.ecf ├── model ├── root │ └── root.e └── tests └── tests.e