1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-05 08:34:22 +03:00
inform7/inform6/Tests/Test Errors/dict-entry-size-test_6.inf
2022-03-06 23:37:05 +00:00

29 lines
397 B
INI
Executable file

#ifdef EARLYDEF;
Version 3;
#endif;
#ifdef TRYDICT3;
Dictionary 'foo' 1 2;
#endif;
#ifdef TRYVERB;
[ XyzzySub; ];
Verb 'xyzzy' * 'foo' -> Xyzzy;
#endif;
[ Main wd1 wd2;
wd1 = 'hello';
wd2 = 'there';
print "DICT_ENTRY_BYTE_LENGTH is ", DICT_ENTRY_BYTES, "^";
print (address) wd1, " ", (address) wd2, "^";
#ifdef TRYPAR3;
wd1 = #dict_par3;
#endif;
];
#ifdef LATEDEF;
Version 3;
#endif;