All help appreciated. Thanks
<code>
Starter is a room.
a closed openable container called a box is in Starter.
the box is fixed in place.
a toy car, a ball, a bat, a tire iron, a transmission, a front end,
an engine block, a set of 4 chrome-spoked wheels, a set of 4 tires,
a back seat and a steering wheel are in the box.
[this format gives an error]
after opening the box:
if the number of things in the box is 0 begin;
say "The box is empty.";
otherwise;
say "Inside the box you find: [line break]":
repeat with item running through things in the box:
say "a [item][line break]";
end if.
<code>
after opening the box:
if the number of things in the box is 0:
say "The box is empty.";
otherwise:
say "Inside the box you find: [line break]";
repeat with item running through things in the box:
say "a [item][line break]".
Note that will print things like "a orange", since you have the article
outside of the text substitution. And I'm not too sure about the final
line break ... you may end up with too many blank lines.
--JA