James Kipp wrote:
>
> > > Quite a simple request, but I've had trouble finding an answer.
> > >
> > > I'd like my program to wait until the user presses any key, and then
> > > just continue. Is there an easy way to do this? A way without
> > > modules?
> >
> > This will do the trick:
> >
> >
On Wednesday 19 March 2003 10:24, Nick Drage wrote:
> Quite a simple request, but I've had trouble finding an answer.
Not a simple request, I'm afraid. Niether using getc, nor reading will
work unless the user presses 'enter'.
> I'd like my program to wait until the user presses any key, and th
> > Quite a simple request, but I've had trouble finding an answer.
> >
> > I'd like my program to wait until the user presses any key, and then
> > just continue. Is there an easy way to do this? A way without
> > modules?
>
> Hi Nick.
>
> This will do the trick:
>
> while (1) {
>
Nick Drage wrote:
> Hi,
>
> Quite a simple request, but I've had trouble finding an answer.
>
> I'd like my program to wait until the user presses any key, and then
> just continue. Is there an easy way to do this? A way without
> modules?
Hi Nick.
This will do the trick:
while (1) {
> -Original Message-
> From: Dmitri Zakharov [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 23, 2002 2:47 PM
> To: [EMAIL PROTECTED]
> Subject: Press any key to continue...
>
>
> Hi everybody;
>
> Here's a perl newbie problem:
> I'm wondering how could I suspend the execution of
Is this on windows??
If so:
system("pause");
HTH
John
-Original Message-
From: Dmitri Zakharov [mailto:[EMAIL PROTECTED]]
Sent: 23 January 2002 19:47
To: [EMAIL PROTECTED]
Subject: Press any key to continue...
Hi everybody;
Here's a perl newbie problem:
I'm wondering how could I su