1. Euphoria on Linux: "Press Enter..."
I am using Eu2.2 on Linux (Registered). When the program is done, it
always says, "Press Enter..."
I don't want it to do this. I want it to just end. How do I change it so
it doesn't always make me press enter at the end? I've tried adding an
abort(i) to the end, but no change. I even bound it, but it still makes me
Press Enter... at program completion. Help!
Thanks,
Ted
2. Re: Euphoria on Linux: "Press Enter..."
- Posted by Irv Mullins <irvm at ellijay.com>
Mar 20, 2001
-
Last edited Mar 21, 2001
On Tue, 20 Mar 2001, Ted Fines wrote:
> I am using Eu2.2 on Linux (Registered). When the program is done, it
> always says, "Press Enter..."
>
> I don't want it to do this. I want it to just end. How do I change it so
> it doesn't always make me press enter at the end? I've tried adding an
> abort(i) to the end, but no change. I even bound it, but it still makes me
> Press Enter... at program completion. Help!
Add
include dll.e -- at the top
and
free_console() -- as the last tline to be executed
--
Regards,
Irv
3. Re: Euphoria on Linux: "Press Enter..."
Thanks, Irv! That does the trick.
--Ted
--On Tuesday, March 20, 2001 7:46 PM -0800 Irv Mullins <irvm at ellijay.com>
wrote:
>
>
> On Tue, 20 Mar 2001, Ted Fines wrote:
>
>> I am using Eu2.2 on Linux (Registered). When the program is done, it
>> always says, "Press Enter..."
>>
>> I don't want it to do this. I want it to just end. How do I change it
>> so it doesn't always make me press enter at the end? I've tried adding
>> an abort(i) to the end, but no change. I even bound it, but it still
>> makes me Press Enter... at program completion. Help!
>
> Add
> include dll.e -- at the top
> and
> free_console() -- as the last tline to be executed
>
> --
> Regards,
> Irv
>
>
>
>