14 Apr 2025 10:37
#32085
FTN95 does not allow spaces in some operator declarations. For example, the following is not permitted:
Public :: Operator( /= )
Interface Operator( /= )
Module Procedure p1
End Interface
but the following is permitted:
Public :: Operator( == )
Interface Operator( == )
Module Procedure p1
End Interface
The first example, has to be written as:
Public :: Operator(/=)
Interface Operator(/=)
Module Procedure p1
End Interface
No big deal, of course, but it was a little confusing for a short while.