Redmond Provides a Leg Up to Beginning Programmers with Small Basic

16

Comments

+ Add a Comment
avatar

Marcus_Soperus

One of my cousins had to write some phrase 100 times as punishment for some high school infraction. He asked the teacher if he could type it.

 He "typed" it, all right. He wrote a BASIC program that printed the phrase 100 times, tore off the printout, and took it to school the next day. The teacher accepted the printout.

----------------------------------------------------------

It's amazing how illogical a business built on binary logic can be.

avatar

AndyYankee17

yep that's what a real geek would do, completely bypass the copy and paste

avatar

Keith E. Whisman

Back then you needed scissors, paste and a copy machine to do something as simple as copy and paste.

avatar

Queenof1

I remember "programming" in BASIC for Olympics of the Mind, a sort of competition for Gifted children. I was the only one without a partner. There were several problem that you had to code properly and then show the judges the code on the screen. I came in 1st place.

BTW, what was the graphical program back then? I coded some sort of design and even changed the ink color.

avatar

shellpc

did that back in gw BASIC 3.0 back in junior high. It was part of the whole BASIC package, I forget what it was called though.

avatar

Queenof1

I think that's what it was. I wikied it.

avatar

nekollx

icodes a all text branching story in BASIC

 

then my teacher erased it insteado f reviewing it 

 

:/

avatar

r3dd4wg

10 PRINT "HELLO WORLD!"

20 END

RUN

HELLO WORLD!

avatar

mlauzon

Why end it?!:

10 PRINT "HELLO WORLD!"

20 GOTO 10

RUN

Although, you didn't really need to use double digit numbers, you could use single digit numbers as well...for example:

1 PRINT "HELLO WORLD!"

2 GOTO 1

RUN

Of course you could start using double (etc) digit numbers if the program was really long: 1-10, 1-100, 1-1000

 

 

Michael

avatar

bloodgain

Oh yeah, it's all fun and games until someone has to add more than 10 lines of code!

avatar

Driftweed

Man those were the days! sitting in front of the telvision with the radioshack Tandy computer just typing away and PRAYING no one stepped on the power chord, lol. Even remember my first cassette tape "hard drive", and even later on connecting to the "internet" with my kick ass 2400 baud rate modem! 

 yeah those were the good old days... 

avatar

Keith E. Whisman

The basic language was awsome. I remember the OS OSS that would on the fly compile and execute the code. I had hundreds of basic programs for an Atari 800 way back when. It really was awsome. It had a cassette tape drive for storage and a diskette drive also for storage and the modem was the same you saw in WarGames. How Sweet those days were. Way back when.

avatar

nmanguy

No line numbers? I wonder if it will end up being like the BASIC that Texas Instruments puts on calculators.

avatar

Keith E. Whisman

Yeah I remember Line numbers.. those were the days..

10 goto 20 if y or something like that

20

30

40

run

At the end of the code you just typed Run and then pressed enter and if everything was good then the program would run. I used to enjoy a simple program I wrote for my own enjoyment that would count from 1 to infinity or until the computer over heated and died but I can't remember the code. It was simple like three lines and there was a goto in there somewhere.. and an If and what not... God that was ages ago but hey you could have decent graphics with basic it just took thousands and thousands of lines of code. You had to break up the screen into a grid and give the coordinates in your code. it was simple and easy and I understood it.

I don't remember much about it anymore and I look at C or Visual basic and I'm completely lost.  

 

 

avatar

mgalletly

10 int i=0

20 print i

30 for i=i+1

40 goto 20

run

 If memory serves from my old TRS-80 Color Computer.

avatar

AndyYankee17

int i = 0;

while(1)

{

 cout << i;

i++;

}

 

something like that?

Log in to MaximumPC directly or log in using Facebook

Forgot your username or password?
Click here for help.

Login with Facebook
Log in using Facebook to share comments and articles easily with your Facebook feed.