File: ok_relative_include_1.pas

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

  Note that the ok_relative_include_conf.inc file is in the same
  directory as this unit, so @bold(no matter what is current dir
  when running pasdoc) --- you should not need to add any -I
  option to pasdoc to find ok_relative_include_conf.inc. }

unit ok_relative_include_1;

{$I 'ok_relative_include_conf.inc'}

{$I ok_relative_include_conf.inc}

interface

implementation

end.