File: ok_include.pas

package info (click to toggle)
pasdoc 0.16.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,572 kB
  • sloc: pascal: 28,894; javascript: 7,665; xml: 2,597; makefile: 523; sh: 417
file content (21 lines) | stat: -rw-r--r-- 472 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ @abstract(This is a test of @@include tag.)

  Behold included file ok_include_1.txt:
  @include(ok_include_1.txt)

  Behold file ok_include_1.txt that is included for the 2nd time here:
  @include(ok_include_1.txt)

  Behold file ok_include_1.txt that is included for the 3rd time
  here, and this time it's inside @@bold:
  @bold @include(ok_include_1.txt)

  Take a look at @link(ok_include_intro Introduction) too.
}
unit ok_include;

interface

implementation

end.