vote up 18 vote down star
3

If you can remember that far back, what did the first computer program you ever wrote do (once you had finished debugging it)?

flag

82 Answers

prev 1 2 3
vote up 2 vote down

I did 'Hello World', because that's what I had read was traditional as a first program, and who was I to question tradition?

link|flag
show 1 more comment
vote up 0 vote down

Mine took a couple of numbers that were input and then printed out different messages depending on how big the answer was.

The scary part was it was written in Fortran on punch cards.

link|flag
vote up 0 vote down

In javascript, some board games.

link|flag
vote up 0 vote down

I made a blackjack style game on my TI-83 calculator. ^_^

link|flag
vote up 0 vote down

Mine was a snake game in QBASIC. Given that I didn't have access to any learning material, I didn't use SUBs, just GOTO statements, so after a fixed amount of iterations, the interpreter ran out of stack, and the program crashed. Took me a while to figure out what was happening!

link|flag
show 1 more comment
vote up 0 vote down

Wrote a program in Visual Basic that tormented/helped America Online back in the 3.0 days...

link|flag
vote up 2 vote down

My first ever original program was in Sinclair BASIC. It drew a picture of the Death Star using CIRCLE statements, and played the theme from The Empire Strikes Back with BEEP commands.

link|flag
vote up 0 vote down

Drew tangent lines on the graph of a function. TI-81.

link|flag
vote up 1 vote down

Mine was actualy... compiling. And that's exactly what I was trying to do :)

link|flag
vote up 3 vote down

G'day,

It was a FORTRAN programme, entered on punch cards, at the Royal Military College, Duntroon in Australia in '75. West Point (Sandhurst and Duntroon maintain a tight list of ties together).

The machine was a huge GE mainframe, donated by the company my father worked for, that had core memory. Professor Swan, who'd previously taught physics to my father at RMC, showed me how to program it.

The programme just added a couple of numbers together. But when I saw the results dumped out, I was hooked.

Ooh. Just had a major flashback. My first actual programme was on my own Digi-comp in 1966 and it counted from 0 (where else) up to 7. My Dad brought one back to Oz for me after making one of his visits to the States for work.

I can't believe they're making the Digi-comp again. Gotta buy me one!

cheers,

Rob

link|flag
vote up 0 vote down
10 INPUT "INPUT NUMBER: " : A  
20 FOR I=1 TO 10  
30 ? A " * " I " = " A * I  
40 NEXT  
50 END

Maybe I've forgot all sintatic details, but I was like 8 year old. I clearly remember that ? was PRINT on Commodore's Basic

link|flag
vote up 0 vote down

I seem to remember doing a Fahrenheit/Celsius converter. In Algol 68. On punched cards. The cool kids were using Commodore PETs at the time...

link|flag
vote up 3 vote down

My first program was writing a Mad Libs program in QBasic. It was the worst spaghetti code you can imagine with the story templates written directly into the code. I carried it and a version of QBasic around on a floppy to show everyone - I was 11 years old at the time.

link|flag
vote up 16 vote down
10 PRINT "JON IS AWESOME"
20 GOTO 10
link|flag
1  
You have a bug in your program. Line 10 should read 10 PRINT "CRAIG IS AWESOME" – Craig Oct 16 '08 at 0:04
1  
You have a bug in your program. Line 10 should read 10 PRINT "JON SKEET IS AWESOME" – A. Scagnelli Aug 21 at 13:20
show 4 more comments
vote up 1 vote down

Mine was a circle bouncing off the edges of the screen. Something like this (pseudo):

while(true) {
  drawCircle(x,y);
  x = x - dx;
  y = y - dy;
  if (dx > 0 && x == 0)
   dx = -dx;
  ... and so on
  clearscreen;
}

hypnotizing images :P

link|flag
vote up 0 vote down

Mine was in BASIC on an Sinclair ZX81, almost 30 years ago now. I don't remember what the program was but we got the computer for Christmas when I was seven and I worked my way through the manual and any other BASIC programming book I could find. Looking at the manual, it was probably the little program to print the square root of a number entered by the user.

link|flag
vote up 4 vote down

My first 'program' just multiplied two numbers. It was hard-coded in machine instructions in an E-PROM chip for my electronics course in high-school.

I consider myself lucky to have learnt programming all the way from the hardware level up.

link|flag
vote up 9 vote down

It moved a turtle around the screen :)

link|flag
show 2 more comments
vote up 2 vote down

My first one was used the Circle() and Paint() statement in GWBASIC. And using the randomizer to draw circles of various sizes and colors (or rather, shades of CGA grey) on the screen.

link|flag
vote up 1 vote down

I'm sure my very first one was just a simple "Hello World" in C++. After that I can't remember exactly what I did first but one of the early ones I can remember was a poker game. If I remember correctly, I didn't write the logic for all of the possible poker hands, but it did have some of the functionality. It wasn't graphical at all, everything was text-based from the command line.

link|flag
vote up 4 vote down

My first computer program was a little animated man that looked like he was walking, on a Texas Instruments TI 99/4a

Soon after that I got a cartridge of Extended Basic and had access to sprites and joystick functions, so I attempted to make a Super Mario clone. Unfortunately, due to the receipt of an actual Nintendo (NES) the project was canceled indefinitely.

link|flag
show 1 more comment
vote up 7 vote down

Guess a number between 1 and 100 game :)

link|flag
show 2 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.