Constant Story "MYGAME";
Constant Headline "^My first Inform game.^";
Constant MANUAL_PRONOUNS;

Include "Parser";
Include "VerbLib";

[ Initialise;
  location = study;
  "^Hello!^";
];

Class Room
  with  description "A bare room."
  has   light;

Class Furniture
  with  before
        [;
          Take, Pull, Push, PushDir:
            print_ret (The) self, " is too heavy for that.";
        ]
  has   static supporter;

Room study "Your study";

Furniture "writing desk" study
  with  name 'writing' 'desk' 'table';

Object -> -> axe "rusty axe"
  with  name 'rusty' 'blunt' 'axe' 'hatchet',
        description "It seems old and blunt.";

Include "Grammar";
