1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 10:04:21 +03:00
inform7/inform6/Tests/Test Cases/box_quote_test.inf
2022-03-06 23:37:05 +00:00

23 lines
339 B
INI
Executable file

Include "Parser";
Include "VerbLib";
Object Start "Starting Point"
with description
"An uninteresting room.",
with before [;
Jump:
box
" This is a test"
"of the box quotation"
" feature.";
"Boing.";
],
has light;
[ Initialise;
location = Start;
];
Include "Grammar";