[Prev][Next][Index][Thread]

Re: Dylan listener



On Thu, 16 Mar 2000 15:30:02 -0500 (EST), "Vladimir Yanovsky"
<volodyan@cs.technion.ac.is> wrote:

> Does anybody know how can I run a listener in FD 2 beta 3 enhanced?
> Documentation says one should run console-dylan.exe located in bin
> directory, but it was not there. Another possibility listed is to run
> Command Prompt
> from the main File menu, but it also was not there. I found Command Prompt
> in Tools menu, but it either keeps silence,
> returns something like "No command named '2+2' " or  tells "Internal error:
> no applicable method". Dylan playground
> was also unable to compute '2+2;'
> Am I missing something basic(which is very possible since I'm new to
> Dylan/FD), or the listener is not yet implemented?

Chris has already answered specific questions, but I wanted to point out the
underlying philosophy:

+ Dylan application code is developed in a separate process from the Dylan
environment.

+ The Dylan environment, in general, can't evaluate Dylan code itself.

+ You use a Dylan listener on a particular application/project rather than
everything loaded into an enviroment (a la Lisp).

+ FD's "listener" is called the "interactor" and is part of the "debugger".

+ FD's "playground" is just a pre-built application containing some interesting
code you might want to interact with.

+ So to use a "listener":
	- create a project 
	- select "Interact" or "Debug" on it

+ FD's listener has some neat features. eg It turns return values from executed
code into selectable items that can be browse.

__Jason


References: