Skip to content

Commit 8af2fbb

Browse files
authored
Update index.md
1 parent 4a47f48 commit 8af2fbb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

docs/index.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ begin
9595
end.
9696
```
9797

98-
Please note that because blank newline is used to mark end of header parts of response, for safety, always add them even if you do not want to set response header. For example
98+
Please note that, because blank newline is used to mark end of header parts of response, for safety, always add them even if you do not want to set response header. For example
9999

100100
```
101101
begin
@@ -126,6 +126,15 @@ begin
126126
writeln('test');
127127
end.
128128
```
129+
Or replace first `writeln()` with `write`()`,
130+
131+
```
132+
begin
133+
write('<h1>Hello from Pascal</h1>');
134+
writeln();
135+
writeln('test');
136+
end.
137+
```
129138

130139
## CGI environment variables
131140

0 commit comments

Comments
 (0)