I tried to do this:
local
condition: BOOLEAN
condition := true
do
And something like this:
local
condition: BOOLEAN := true
do
Obviously neither work, but I need to initialize a variable inside the declaration because I don't want the variable to re-initialize if a retry instruction is executed. I looked in Eiffel's oficial documentation and in tutorial but they always intitialize variables in the body of the operation.