I’ve been trying to learn Dialog over the past few days but getting to the Standard Library part of the documentation I’ve tried to test out some of the examples in Borogove and it seems that they aren’t working as described in the manual. For example in Chapter two the example code about a tutorial room with a table and chair leads to messages of not understanding the commands suggested in the manual, x it and sit, as well even the name of the room only comes up as “Location” with a description of “you are here” as opposed to the name “tutorial room” and look of “This is a very nondescript room, dominated by a wooden table.”
As I’ve mentioned I’m still very new to learning dialog so I don’t really have any clue as to what is going wrong, if I’m doing something wrong or if it’s something wrong with borogove or some third thing. Pretty much all I’ve done is copy-pasted this example into borogove.
The example from Chapter 2
#player
(current player *)
(* is #in #room)
#room
(name *) tutorial room
(room *)
(look *) This is a very nondescript room, dominated by a wooden table.
(notice #table) %% Binds the word “it” to the table.
#table
(name *) wooden table
(descr *) It's a sturdy wooden table.
(supporter *)
(* is #in #room)
#chair
(name *) chair
(descr *) It's a plain chair, painted white.
(on-seat *)
(* is #in #room)