A landslide prediction and simulation model in BlitzBasic
My first program was a calculator written in Java
My first program was part of a class project at university and was written in Pascal.
First application was of course "Hello world"
Around 2000 when i was obsessed with computers i wrote a tool for numerous exploits for automatic execution. Created this in perl.
First OOP experience was in JAVA creating a hangman application.
My first program was a random number generator, written in Basic.
The first finished project was a game, where an image will change position every quarter of a second and the player must click on the image to beat the game. All written in VB 4.
Just like @maruru, my first program was a "Guess the number" game. Written in Casio BASIC on my calculator! 😄
Apart from Hello World? "Guess the number" in Delphi:
var
number,
guess
: Integer;
correct
: Boolean;
begin
randomize;
number := random(30) + 1;
correct := false;
while not correct do
begin
writeln('Guess the number:');
readln(guess);
if guess = number then
correct := true
else
writeln('Wrong!');
end;
writeln('Correct!');
end.
VB3 - just playing with time - showing current time, setting a timer, adding subtracting time, etc...
First real production website was in PHP 3 or 4 - car club with forums in phpBB
Ahmad Reza
Student and Junior Front End Enginerr
Hello World of course written in html, or if you ask me the REAL one, its php