File: line_continuation_02.f90

package info (click to toggle)
lfortran 0.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 46,332 kB
  • sloc: cpp: 137,068; f90: 51,260; python: 6,444; ansic: 4,277; yacc: 2,285; fortran: 806; sh: 524; makefile: 30; javascript: 15
file content (77 lines) | stat: -rw-r--r-- 1,296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
program line_continuation_02
implicit none

! Here are the rules for & based on the ยง 6.3.2.4 ("Free form statement
! continuation") in Fortran 2018 standard.

! The & character in a comment has no effect

! The & character can be used to continue a line like this:

integer &
    :: j

! If it is used between tokens, then one can, but does not have to put another &
! on the next line:

integer &
    &:: k

! If & is used to continue the line in the middle of a token, one must put
! another & at the next line:

inte&
    &ger :: i


i = 5

pr&
&i&
        &nt *, i

! One can continue strings also by treating them as tokens:

print *, "some string &
    &is continued"

! Unless the & is at the end of the line, it can be used as a regular
! character in a string:

print *, "some string can contain & as a regular character &
    &is continued"

print *, "Even here: &&
    && <- there will be two &"

! One can put arbitrary comments and empty lines after & that will be skipped:

print *, &

    i

print *, & ! comment 1
! comment 2

! comment 3

    i

print *, & ! comment 1
! comment 2

! comment 3

    &i

! In strings the comment cannot be after the first &, but it can be on
! subsequent lines:

print *, "some string &
! comment 2

! comment 3

    &is continued"

end program