I am new to Fortran and I'd like to understand the differences between these two statments:
logical :: TF
TF = .true.
and:
logical :: TF
data TF/.true./
Please keep the response in more simple to words, I've recenetly moved from Python to this compiled language. Thanks!