The rescue clause does not work
Submitted by Creative Bachkhoa on Sat, 10/31/2009 - 04:29.I've tested the system by an example of exception handling in Eiffel
<eiffel>
feature {NONE} -- Initialization
i:INTEGER
x:REAL
y:ARRAY[REAL]
make
-- Run application.
do
create y.make(1,2)
io.put_string ("The item at position: ")
io.read_integer
i:=io.last_integer
find
io.put_string (" is: ")
io.put_real (x)
io.put_string ("%NReturn to make i
