Friday, January 06, 2006

Oh baby....look what I got for xmas....




I bet your drooling....90 K external disk drive and look at that printer....but what is even better....just take a look at this game I got.......

12 Comments:

Blogger Lrzed said...

Figures you used basic.....I used assembler....

ldy #0
beq in
loop:
jsr $ffd2
iny
in:
lda ogre,y
bne loop
rts
ogre: .tx "Ogre is a dork"
.by 15,10,0

11:47 PM  
Blogger Lrzed said...

Of course then there is AWK

BEGIN { print "Ogre is a dork"; exit }

11:59 PM  
Blogger Lrzed said...

and C

#include stdio.h

int main(void)
{
puts("Ogre is a dork!\n");
return 0;
}

12:01 AM  
Blogger Lrzed said...

and C++

#include iostream

int main()
{
std::cout << "Ogre is a dork!\n";
}

12:03 AM  
Blogger Lrzed said...

and Forth

: ogredork ( -- ) ." Ogre is a dork!" CR ;

12:06 AM  
Blogger Lrzed said...

Java of course

public class Ogredork
{
public static void main(String[] args)
{
System.out.println("Ogre is a dork!");
}
}

12:07 AM  
Blogger Lrzed said...

I could go on....but then again...you did use basic....

12:09 AM  
Blogger Lrzed said...

Lest I forget....

COBOL

IDENTIFICATION DIVISION.
PROGRAM-ID. Ogre-is-a-dork.

ENVIRONMENT DIVISION.

DATA DIVISION.

PROCEDURE DIVISION.
DISPLAY "Ogre is a dork!".
STOP RUN.

10:46 AM  
Blogger Lrzed said...

01001111011001110111001001100101001000000110100101110011001000000110000100100000
01100100011011110111001001101011

11:32 PM  
Blogger shandarella said...

WTF you are all old no-one ny age has seen that i think you could sell it for a lot.

6:32 PM  
Anonymous Anonymous said...

01001001001000000110110001101001011010110110010100100000011101000110100001100101001000000111001101101000011010010110111001111001001000000111100101100101011011000110110001101111011101110010000001100010011101010111010001110100011011110110111001110011

8:24 PM  
Blogger Lrzed said...

This comment has been removed by a blog administrator.

8:35 PM  

Post a Comment

<< Home