Path: utzoo!attcan!uunet!cs.utexas.edu!rutgers!sunybcs!bingvaxu!vu0310 From: vu0310@bingvaxu.cc.binghamton.edu (R. Kym Horsell) Newsgroups: comp.lang.prolog Subject: Re: UNH Prolog Message-ID: <3641@bingvaxu.cc.binghamton.edu> Date: 8 Jul 90 15:03:42 GMT References: <1990Jul8.010717.26862@cs.wayne.edu> Reply-To: vu0310@bingvaxu.cc.binghamton.edu.cc.binghamton.edu (R. Kym Horsell) Organization: SUNY Binghamton, NY Lines: 12 The description of the problem is a little vague. The see/1 predicate may be working properly. If you say "see(f)." to the Prolog prompt this tells Prolog to take all future input (including commands) from file f. What it does when it hits end-of-file on f is problematic; you may expect it to come back to the terminal for more input but this isn't always the case -- it may just crash out. See/1 isn't typically meant for interactive use. -Kym =====