home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 407 b | 31 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class BAD_LIKE1
- --
- -- From : Antoine GARRIGUES
- --
-
- creation make
-
- feature
-
- attribute: INTEGER
-
- make is
- do
- attribute := a;
- end;
-
- a: like b is
- do
- Result := b;
- end;
-
- b: like a is
- do
- Result := a;
- end;
-
- end -- BAD_LIKE1
-