/* This is a sample knowledge base to be used to write predicate on
   the blackboard (BB). For each of the following predicates a short comment
   shows what the user must type in the blackbord frame to receive from
   the Prolog interpreter an answer.
   Note: 1) All the predicates MUST have the "to_bb" predicate;   
         2) The "to_bb" predicate accepts up to 5 arguments;
         3) All the arguments predicates are written into the BB separated
            by a TAB character (In C language TAB = \t).
         4) Each name begining with an Upper case letter represents a variable.
*/

                                
/* Type into the BB : user_dialog\ttalk_to_me\t999
   type into the BB : update_me\tuser_dialog
   you will receive : user_dialog\tfrom_Prolog_to_bb\t999
*/

talk_to_me(X) :- 
	to_bb(user_dialog,from_Prolog_to_bb,X).
/*
  Add belove other predicates
  ...........................
  ...........................
  ...........................
  ........................... 
*/
