BSD 1 development
[unix-history] / puman / commentsout
CommitLineData
5bd13011
BJ
1.ta 2.0i
2{ This is a left marginal comment. }
3program hello(output);
4var
5 i: integer; {This is a trailing comment}
6 j: integer; {This is a right marginal comment}
7 k: array [1..10] of array [1..10] of integer;
8 {Marginal, but past the margin}
9{
10 An aligned, multi-line comment
11 which explains what this program is
12 all about
13}
14begin
15 i := 1; {Trailing i comment}
16{A left marginal comment}
17 {An aligned comment}
18 j := 1; {Right marginal comment}
19 k[1] := 1;
20 writeln(i, j, k[1])
21end.