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

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#include "t3.h"
2
#include "tads.h"
3
4
function _main(args)
5
{
6
    local i, j;
7
8
    tadsSay('we\'re about to cause an unhandled run-time exception...\n');
9
        
10
    i = 'hello';
11
    j = 'goodbye';
12
13
    i = i / j;
14
15
    tadsSay('??? we shouldn\'t ever get here!\n');
16
}