home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 438 b | 22 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_INSPECT2
-
- creation make
-
- feature
-
- make is
- do
- inspect
- 1
- when 2 then io.put_string("Impossible%N")
- when 3 then io.put_string("Impossible aussi%N")
- else
- end
- -- io.put_string("Maintenant, je souris :-)%N");
- end;
-
- end -- TEST_INSPECT2
-