私には特徴があります
feature --compare
is_less alias "<" (other: MONEY): BOOLEAN
-- Is current money less than `other'?
local
temp: BOOLEAN
do
temp := cents < other.cents
Result := temp
end
2 つのセント数 (cents < other.cents) がより大きいことを確認するだけです。true に設定しすぎても、Result を true に戻すことはできません。
結果:= temp -----> 結果:= true