Initial version of the tutorial.

Warning: the Makefil is hand-made, and only works in Linux
This commit is contained in:
evomarc 2000-11-29 18:06:09 +00:00
commit ca843a88fc
3 changed files with 55 additions and 0 deletions

16
eo/tutorial/Makefile Normal file
View file

@ -0,0 +1,16 @@
SUBDIRS = Lesson1 Lesson2 Lesson3
lesson1 :
cd Lesson1; make
lesson2 :
cd Lesson2; make
lesson3 :
cd Lesson3; make
all:
for i in $(SUBDIRS); do pushd $$i && $(MAKE); popd; done
clean:
for i in $(SUBDIRS); do pushd $$i && $(MAKE) clean; popd; done

13
eo/tutorial/README Normal file
View file

@ -0,0 +1,13 @@
Eo Tutorial - corresponding to EO version 0.9.2
To start the tutorial, read index.html in your favorite browser.
Many things are missing, including many solutions for the exercises,
the introduction to EC and most of the Bottom-Up pages.
More important, all examples of this tutorial have only been tested
on a Linux computer, and the Makefile will not work with MS-Windows
systems. Any help is welcome!
Be patient ...
evoMarc

26
eo/tutorial/index.html Normal file
View file

@ -0,0 +1,26 @@
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Mozilla/4.75 [en] (X11; U; Linux 2.2.17-21mdksmp i686) [Netscape]">
<title>Tutorial EO</title>
</head>
<body text="#000000" link="#0000EF" vlink="#51188E" alink="#FF0000" background="beige009.jpg">
<hr WIDTH="100%">
<center>
<h1>
<font color="#FF0000">EO Tutorial</font></h1></center>
Welcome to EO - the Evolving Objects library.
<p>But you are not in the right place!
<br>You should better try to go to the html directory, for instance by
<a href="html/eoTutorial.html">clicking here</a>.
<p>
<hr>
<address>
<a href="mailto:Marc.Schoenauer@polytechnique.fr">Marc Schoenauer</a></address>
<br><!-- Created: Mon Oct 30 07:27:13 CET 2000 --><!-- hhmts start -->Last
modified: Fri Nov 28 CET 2000&nbsp;<!-- hhmts end -->
</body>
</html>