File indexing completed on 2025-02-02 03:54:44
0001 <!DOCTYPE html> 0002 <html><head> 0003 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 0004 <title>highlight.f</title> 0005 <meta name="generator" content="KF5::SyntaxHighlighting - Definition (Fortran (Fixed Format)) - Theme (Breeze Dark)"/> 0006 </head><body style="background-color:#232629;color:#cfcfc2"><pre> 0007 <span style="color:#7a7c7d">* This file is an example to test the syntax highlighting file fortran-fixed.xml</span> 0008 <span style="color:#7a7c7d">* (for fortran, fixed format)</span> 0009 0010 <span style="color:#7a7c7d">c <-- this is a comment in the old fortran 77 style (fixed form)</span> 0011 <span style="color:#7a7c7d">c In the free form file, so we shouldn't use this kind of comments!</span> 0012 <span style="color:#7a7c7d">c But fortran 90 still understands fixed form, when parsing sources with</span> 0013 <span style="color:#7a7c7d">c the *.f extension.</span> 0014 0015 <span style="color:#7a7c7d">* this 'c' shouldn't be highlighted as a comment!</span> 0016 c 0017 0018 <span style="color:#7a7c7d">* Prints the values of e ** (j * i * pi / 4) for i = 0, 1, 2, ..., 7</span> 0019 <span style="color:#7a7c7d">* where j is the imaginary number sqrt(-1)</span> 0020 0021 <span style="font-weight:bold">PROGRAM</span> CMPLXD 0022 <span style="font-weight:bold">IMPLICIT</span> <span style="color:#2980b9">COMPLEX(X)</span> 0023 <span style="color:#2980b9">PARAMETER</span> (PI <span style="font-weight:bold">=</span> <span style="color:#f67400">3.141592653589793</span>, XJ <span style="font-weight:bold">=</span> (<span style="color:#f67400">0</span>, <span style="color:#f67400">1</span>)) <span style="color:#7a7c7d">this text should be highlighted as a comment because it is after the 72th column (ignored by the compiler)</span> 0024 <span style="font-weight:bold">DO</span> <span style="color:#f67400">1</span>, I <span style="font-weight:bold">=</span> <span style="color:#f67400">0</span>, <span style="color:#f67400">7</span> 0025 X <span style="font-weight:bold">=</span> <span style="color:#7f8c8d;font-weight:bold">EXP</span>(XJ <span style="font-weight:bold">*</span> I <span style="font-weight:bold">*</span> PI <span style="font-weight:bold">/</span> <span style="color:#f67400">4</span>) 0026 <span style="font-weight:bold">IF</span> (<span style="color:#7f8c8d;font-weight:bold">AIMAG</span>(X)<span style="color:#3f8058;font-weight:bold">.LT.</span><span style="color:#f67400">0</span>) <span style="font-weight:bold">THEN</span> 0027 <span style="color:#8e44ad">PRINT</span> <span style="color:#f67400">2</span>, <span style="color:#f44f4f">'e**(j*'</span>, I, <span style="color:#f44f4f">'*pi/4) = '</span>, <span style="color:#7a7c7d">! I am an in-line comment</span> 0028 <span style="color:#7f8c8d;font-weight:bold"> *</span> <span style="color:#2980b9">REAL(X)</span>, <span style="color:#f44f4f">' - j'</span>,<span style="font-weight:bold">-</span><span style="color:#7f8c8d;font-weight:bold">AIMAG</span>(X) <span style="color:#7a7c7d">! the character at the 6th column indicate a continuation line and should be highlighted as a continuation character</span> 0029 <span style="font-weight:bold">ELSE</span> 0030 <span style="color:#8e44ad">PRINT</span> <span style="color:#f67400">2</span>, <span style="color:#f44f4f">'e**(j*'</span>, I, <span style="color:#f44f4f">'*pi/4) = '</span>, 0031 <span style="color:#7f8c8d;font-weight:bold"> *</span> <span style="color:#2980b9">REAL(X)</span>, <span style="color:#f44f4f">' + j'</span>, <span style="color:#7f8c8d;font-weight:bold">AIMAG</span>(X) 0032 <span style="font-weight:bold">END IF</span> 0033 <span style="color:#8e44ad">FORMAT (</span>A, I1, A, F10.7, A, F9.7<span style="color:#8e44ad">)</span> 0034 <span style="font-weight:bold">CONTINUE</span> 0035 <span style="font-weight:bold">ENDDO</span> 0036 <span style="font-weight:bold">STOP</span> 0037 <span style="font-weight:bold">END</span> 0038 </pre></body></html>