cfad47cfa3/t3compiler/tads3/test/data/header.t

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
>>header line 1<<
2
/* Copyright (c) 1999, 2002 Michael J. Roberts.  All Rights Reserved. */
3
/*
4
Name
5
  header.t - header for inclusion from main.t
6
Function
7
  This is a test header for test_tok
8
Notes
9
  
10
Modified
11
  04/17/99 MJRoberts  - Creation
12
*/
13
14
'We\'re inside the header now!!!';
15
16
"here's an unterminated #if...";
17
#if 1
18
19
#include "header2.t"
20
21
"__LINE__ and __FILE__ in the header: " __FILE__, __LINE__;
22
23
"That's it for the header.";
24
>>header end<<