Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

continuation_character

keremusu1
Beginner
482 Views

Hello!

Which character should Iuse in column 6 to continue the command line above.

I tried *, $, c, etc. but they did not work.

Thanks!

0 Kudos
1 Reply
Steven_L_Intel1
Employee
482 Views
If the source file type is .f90, then this is free-form source and you continue by putting a & character at the end of the line to be continued.

If the source file is .f or .for, then that's fixed-form source and any non-blank character in column 6 other than 0 will work. For more details, see the on-disk language reference.
0 Kudos
Reply