diff options
Diffstat (limited to 'item.prolog')
-rw-r--r-- | item.prolog | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/item.prolog b/item.prolog deleted file mode 100644 index 11e469c..0000000 --- a/item.prolog +++ /dev/null @@ -1,22 +0,0 @@ - -:- module(item, [itemAt/2, writeItemsAt/1, canTake/1, description/2]). - - -itemAt(ladder,a). - - -writeItemsAt(L) :- - itemAt(X,L), - description(X,D), - write(D), - fail. -writeItemsAt(_) :- true. - - -canTake(gold). -canTake(deadWumpus). - - -description(ladder, 'There is a rope ladder hanging from the ceiling here.\n'). -description(gold, 'You see a glitter along the sandy floor of the cave.\n'). - |