ARGH Re: [OT] EFSB at Titan Games

3 posts ยท Jun 5 2000 to Jun 6 2000

From: Roger Books <books@m...>

Date: Mon, 5 Jun 2000 10:30:43 -0400 (EDT)

Subject: ARGH Re: [OT] EFSB at Titan Games

Sorry, that wasn't supposed to go to the list.

#!/usr/bin/perl -w

use strict; my counter;

for (counter=0; counter < 1000; counter++ ) {
        print "I will not post before thinking.\n";
}

From: Andrew Martin <Al.Bri@x...>

Date: Tue, 6 Jun 2000 15:32:22 +1200

Subject: Re: ARGH Re: [OT] EFSB at Titan Games

> Sorry, that wasn't supposed to go to the list.

It's easier in Rebol:

[REBOL [] loop 1000 [print "I will not post before thinking."]]

;-)

From: Donald Hosford <hosford.donald@a...>

Date: Tue, 06 Jun 2000 01:37:18 -0400

Subject: Re: ARGH Re: [OT] EFSB at Titan Games

For those who didn't understand the last two messages:

FOR X = 1 to 1000 PRINT"I will not post before thinking." NEXT X

;-)

Donald Hosford (an old basic programmer...)

> Andrew Martin wrote:

> > Sorry, that wasn't supposed to go to the list.