fprettify icon indicating copy to clipboard operation
fprettify copied to clipboard

problem with the lack of reserved variable names

Open phreeplot opened this issue 8 months ago • 0 comments
trafficstars

logical:: g = .true.
character(2) :: eq = "OK"
if (g .and. eq.ne.'') print *, eq
end

becomes

logical:: g = .true.
character(2) :: eq = "OK"
if (g.and .eq. ne.'') print *, eq
end

All a bit of a nightmare no doubt.

phreeplot avatar Mar 06 '25 16:03 phreeplot