vote up 30 vote down star
6

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

flag

96 Answers

1 2 3 4
vote up 28 vote down check

Mine was a rocket taking off. Something like:

10 PRINT "  /\"
20 PRINT " /  \"
30 PRINT " |  |"
40 PRINT " |  |"
50 PRINT " |  |"
60 PRINT " |  |"
70 PRINT " |  |"
80 PRINT "/====\"
90 PRINT " ####"
100 PRINT
110 GOTO 100

Aw GWBASIC, I hardly knew ye...

-Adam

link|flag
20  
I almost marked this post as offensive :) – Even Mien Sep 24 '08 at 18:51
1  
I was doing that kind of stuff too!! =) (space shuttle) – Anonymous Oct 2 '08 at 9:38
1  
I would do stuff like that on the display models at radio shack before I could afford my own computer. The sales guys seemed to get a kick out of it. – Ferruccio Oct 13 '08 at 19:11
3  
How many people just went and wrote this in five seconds in their language of choice? – Chris Lutz Jan 20 at 18:57
6  
Oh man, this takes me waaay back. That was my first ever program, too. But, I might add, my rocket was much larger. :p – Konrad Rudolph Jan 20 at 19:15
show 2 more comments
vote up 21 vote down
10 PRINT "JON IS AWESOME"
20 GOTO 10
link|flag
1  
I never knew who Jon was but I did think he was awesome... – dwj Sep 24 '08 at 2:04
4  
You have a bug in your program. Line 10 should read 10 PRINT "CRAIG IS AWESOME" – Craig Oct 16 '08 at 0:04
6  
You have a bug in your program. Line 10 should read 10 PRINT "JON SKEET IS AWESOME" – A. Scagnelli Aug 21 at 13:20
1  
Mine was similar - except it wrote "FATAL ERROR". It loaded at startup on an adult's PC. – Chris S Jan 24 at 0:16
show 3 more comments
vote up 16 vote down

It moved a turtle around the screen :)

link|flag
show 5 more comments
vote up 12 vote down

Guess a number between 1 and 100 game :)

link|flag
2  
Wait - would it pick a number and have you guess, or would you pick a number and the program would guess? =) – Erik Forbes Oct 13 '08 at 19:27
show 1 more comment
vote up 12 vote down

One of my first programs, not sure if it was the absolute first one, went like this:

INPUT "Please enter your name: ", name$
IF name$ = "Ray" THEN
  PRINT "You're cool"
ELSE
  PRINT "You suck"
END IF
link|flag
vote up 7 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
show 1 more comment
vote up 6 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 6 vote down

I didn't consider myself actually programming until I picked up The C Programming Language by K&R in high school and I made this silly thing, but thinking back to the good old days, I did have some fun with hypercard in 6th grade, where I made a rhythm quiz game -- it generated a measure full of different note values and you had to guess the time signature.

And then I implemented BomberMan in StarCraft, among other things. StarCraft is totally a programming language, right?

link|flag
vote up 4 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 4 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 4 vote down

BASIC, 1982, I was 8 yrs old, a small program asking for 2 numbers and then adding them.

I thought loops were the coolest thing on the face of the earth...

link|flag
1  
I'd say they are still, imagine programming w/o them :-) – André Oct 31 '08 at 15:09
1  
they aren't ? :/ – Valentin Rocher Jan 20 at 19:19
show 1 more comment
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 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 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 2 vote down

A ticker that showed promotional messages for a non-profit organization in my neighbourhood. It was written in basic on a C64. I had to turn my television/monitor so it faced the window so people could actually see it. If anyone saw it at all ;-)

link|flag
vote up 2 vote down

Like most my age I started with something like: 10 PRINT "BUTT" 20 GOTO 10.

My first real program was a AD&D char generator. You could put in what kind of dude you wanted and it would randomly generate stats until an acceptable one was generated. If you picked paladin it could take a few seconds back on my 286 because of the 17 CHR stat requirement.

link|flag
show 1 more comment
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 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 1 vote down

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

link|flag
vote up 1 vote down

It was a program asking you how you felt, and the answer was different whether you said something like good ("well, that's great!") or bad ("ooooh, too bad, sorry for you!").

I think I was twelve, in GWBASIC, on a PC XT @8MHz with amber screen and Hercules gfx card.

After I saw I could start from nothing and create something that, well, worked (?), I was hooked on programming.

From there I tried to "re-make" every single program or game I liked in BASIC, such as Car Wars, Bomberman, Slot Racer (an old atari 2600 2-player game). I remember I made a "level editor" (well, sort of) in character mode for Slot Racer and Bomberman. My skills were so poor at the time, needless to say my remakes were not so great, graphics- and playability-wise :D

link|flag
vote up 1 vote down

I drew a square, in LOGO.

Probably along the lines of:

FORWARD 100
RIGHT 90
FORWARD 100
RIGHT 90
FORWARD 100
RIGHT 90
FORWARD 100
link|flag
vote up 1 vote down

A mIRC script that used sockets to connect/login to a website and dynamically 'vote' on a specified list of url-profiles. I had written a few other very very basic scripts in mirc before this, but that was the first that did anything significant.

link|flag
vote up 1 vote down

My first program was a menu system written in QBASIC that ran from the AUTOEXEC.BAT on DOS. It allowed you to pick what you wanted to run (games, Win 3.1, etc.). Unfortunately it was a bit of a RAM hog :P

link|flag
vote up 1 vote down

My older brother was firing up our brand new Atari 800XL in the living room and showing off some of the demo programs that came with it. At some point a program exited back to the BASIC prompt, and I typed in something that I had seen on a nerd show on a public-access channel:

10 PRINT "HELLO"
20 GOTO 10

I had already learned to pad the line numbers to allow for later insertions! :)

I don't know if this was my earliest program; I may have already been exposed to LOGO in school. But I couldn't have been more than 6 at the time. Yet astonishingly, I didn't realize that programming was in my career path until 2nd year university.

link|flag
vote up 1 vote down

My very first one was Hello, world in C++ from a book published in 2000s but was using pre-98 C++.

#include <iostream.h>

int main()
{
    cout << "Hello, world!";
}

Notice how this screams at you to be outdated and just, plain, wrong.

The first thing I wrote outside the tutorial book was a calculator. It was menu drive, so pretty useless. I later tried some RDP thing, but considering it was 2 months into starting C++ and I was 12, it never succeeded. The next time I tried was now (6 years later), and I got lazy and used Spirit to parse the expressions. In effect, I've been babied my entire life using C++, haha.

link|flag
vote up 1 vote down

My first was a hit counter in PHP, reading a number from a text file, incrementing it and writing it back.

link|flag
vote up 1 vote down

Technically, the first program I ever typed was, in TI82-BASIC:

:Prompt A,B
:√(A²,B²)→C
:Disp C

But I got that out of the textbook. After being somewhat awed by this and playing around with the keywords to figure out what they did, I promptly wrote PONG in TI BASIC. I was a game programmer from day one. ^_^

What's interesting is that, at the time, PONG just seemed simple to do. I had no idea that it was basically the standard "Hello World" for games engines. My version was horribly coded, made religious use of the GOTO and LBL statements, and had a memleak because I didn't know how to END my IF THEN statements (I was GOTOing out of them instead) so it would always crash when the player reached 204 points. I'll remember it forever. 'course, once I got my TI-83, I rewrote the thing properly. Even then, it's been years since I've even turned on a TI calculator, but it's still my humble roots.

link|flag
show 1 more comment
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 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 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
1 2 3 4

Your Answer

Get an OpenID
or
never shown

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