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

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
/*
2
 *   extern3 - this is one part of a three-part program in which the
3
 *   source files reference symbols in one another 
4
 */
5
6
#include "tads.h"
7
8
function _main(args)
9
{
10
    tadsSay('entering main\n');
11
12
    tadsSay('calling f1_a\n');
13
    f1_a();
14
15
    tadsSay('calling f2_a\n');
16
    f2_a();
17
}
18