Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=1) | :: | eqChar |
logical function IsOperator(eqChar)
character(1) :: eqChar
! Local
integer :: i
IsOperator = .false.
do i = 1,5
if(eqChar == operators(i)) then
IsOperator = .true.
return
endif
enddo
endfunction IsOperator