RosettaCodeData/Task/Extend-your-language/Inform-7/extend-your-language-2.inf
2023-07-01 13:44:08 -04:00

12 lines
239 B
INI

Home is a room.
When play begins:
if2 (the player is in Home) and-or (the player is a person) begin;
say "both";
else1;
say "only 1";
else2;
say "only 2";
else0;
say "neither";
end if2.