How to do block comment in fortran?

fortran, fortran90

Solution

No, the strange concept of block comments is alien to Fortran. Your editor or development environment might provide a way to comment a block of lines in one go.

Problem

I have seen `/* block comment */` for block commenting in C++. I know I can do line commenting by using `!` or `c`, but is there any option for block commenting in Fortran?

Original source

Related problems