Closing Console Application window...

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Closing Console Application window...

Arturo Frappé
Hi.
Does any body knows, how to gracefully close console application window?

thanks.


Reply | Threaded
Open this post in threaded view
|

Re: Closing Console Application window...

Blair McGlashan
"Arturo Frappé" <[hidden email]> wrote in message
news:[hidden email]...
> Hi.
> Does any body knows, how to gracefully close console application window?
>

With SessionManager>>closeConsole, e.g.

(SessionManager current stdout)
    display: 'Hello world';
    cr;
    flush.
Processor sleep: 2000.
SessionManager current closeConsole

Regards

Blair