!% -~SD
!%

!--- Shell: An Interactive Starting Point
!A Port of the hugo shell to Inform
!Original shell by Kent Tessman
!Inform Port by Gandof
!--- Constants
Constant Story "Shell";
Constant Headline "^An Interactive Starting Point^^Copyright (C) by Kent Tessman^Inform Port by Gandof^";
Constant MANUAL_PRONOUNS;           ! Optional, but useful
!---Inclusions
Include "Parser";
Include "VerbLib";
Include "Grammar";
!------------------------------------------------------------------------------!
!--- Initialise routine

[ Initialise;
"^^";
Banner();
];

!---Room class

Class   Room
 has   light;

!---empty room
room emptyroom "Empty room"
with description "This is an empty room.";
!---That's all folks!