10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
.
|
|
| User: "Bruce." |
|
| Title: Re: bug |
18 Mar 2007 10:18:20 AM |
|
|
<razor> wrote in message news:45fd445f$1_3@x-privat.org...
10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
Infinite loop.
Bruce.
.
|
|
|
| User: "Heisenberg" |
|
| Title: Re: bug |
18 Mar 2007 06:55:43 PM |
|
|
Bruce. wrote:
<razor> wrote in message news:45fd445f$1_3@x-privat.org...
10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
Infinite loop.
Bruce.
my laptop locked up while doing a loop. i had to unplug it for a few days.
i remember the days of BASIC on the commodore 64, at the elementary school.
.
|
|
|
|
| User: "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -" |
|
| Title: Re: bug |
18 Mar 2007 11:37:11 AM |
|
|
On 18 Mar, 15:18, "Bruce." <n...@nowhere.com> wrote:
<razor> wrote in messagenews:45fd445f$1_3@x-privat.org...
10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
Infinite loop.
Bruce.
Does anyone still use basic to make bugs?
.
|
|
|
| User: "Heisenberg" |
|
| Title: Re: bug |
18 Mar 2007 06:50:54 PM |
|
|
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
- wrote:
On 18 Mar, 15:18, "Bruce." <n...@nowhere.com> wrote:
<razor> wrote in messagenews:45fd445f$1_3@x-privat.org...
10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
Infinite loop.
Bruce.
Does anyone still use basic to make bugs?
bugs are made with solder and assembly language.
people still use Basic.
lower level stuff can be done in C. scripting can be done in Perl or
Python or Ruby.
if you want to automate stuff in Windows, there are batch interpreters
and AutoIt.
.
|
|
|
|
|
|
| User: "the_dawggie" |
|
| Title: Re: bug |
18 Mar 2007 06:31:06 PM |
|
|
On Mar 19, 12:53 am, razor wrote:
10 LET A=69
20 PRINT A
30 A=A+1
40 GOTO 20
Well, to that I say:
#include <stdio.h>
main() {
int a = 69;
printf("%d\n", a);
for(;;) a++;
}
My computer exploded when the "a" got
too big.
.
|
|
|
|

|
Related Articles |
|
|