RealX being a real, can't seem to make this work:
Case RealX of
<> 1 : IsNotOne;
= 1 : IsOne,;
< 1 : LessThanOne ;
> 1 : IllegalOperation;
end;
IsNotOne, IsOne, etc. are the code to do as per value of RealX. Looks like this is not allowed?
If so, how?
Thanks!