PDA

View Full Version : public static void main(String[] args)


OrcaDK
12-24-2005, 07:23 AM
{
System.out.println("Merry christmas fellow software enthusiasts!");
}

DrGonzo
12-24-2005, 08:18 AM
[ QUOTE ]
{
System.out.println("Merry christmas fellow software enthusiasts!");
}

[/ QUOTE ]

Neeeeeeeeeeeeeeeerd!


And merry christmas /images/graemlins/laugh.gif !

brimstone1
12-24-2005, 09:35 AM
to you too /images/graemlins/laugh.gif

theRealMacoy
12-24-2005, 09:37 AM
ah shucks that sure is nice orka.

i fully enjoy keeping abreast of the latest ideas and developments from programmers such as yourself in this forum....even though i'll admit i wasn't exactly sure to what this post's title refered until i looked it up.

....following your progress with MTH has been great -- from conception to the recent commercial application. i look forward to at the very least demoing it in the new year.

i hope your holiday is filled with splendid moments.


printf( "Have\na\nMerry\nChristmas\nand\na\nHappy\nNew Year\n" );


cheers,
sean

AngryCola
12-24-2005, 03:26 PM
http://img.photobucket.com/albums/v431/AngryCola/MerryChristmas01.gif

12-24-2005, 06:53 PM
DATA DIVISION.
01 WORKING-STORAGE.
01 HEADER-1 PIC X(15) VALUE 'MERRY CHRISTMAS'

PROCEDURE DIVISION.

PERFORM 100-INIT THRU 100-INIT-EXIT.
PERFORM 200-MAIN THRU 200-MAIN-EXIT.
PERFORM 300-TERM THRU 300-TERM0EXIT.
GOBACK.

100-INIT.
OPEN OUTPUT-FILE FOR OUTPUT.
100-INIT-EXIT.

200-MAIN.
WRITE OUT-REC FROM HEADER-1.
200-MAIN-EXIT.

300-TERM.
CLOSE OUTPUT-FILE.
300-TERM-EXIT.

Then just open the output file in 3.4.

beatua
12-24-2005, 09:56 PM
Merry Christmas from an open ap in .ca!

Guess I'm not the only loser online tonight /images/graemlins/smile.gif

Best wishes to all you guys.

runstop

PokerAce
12-26-2005, 05:07 PM
[ QUOTE ]
DATA DIVISION.
01 WORKING-STORAGE.
01 HEADER-1 PIC X(15) VALUE 'MERRY CHRISTMAS'

PROCEDURE DIVISION.

PERFORM 100-INIT THRU 100-INIT-EXIT.
PERFORM 200-MAIN THRU 200-MAIN-EXIT.
PERFORM 300-TERM THRU 300-TERM0EXIT.
GOBACK.

100-INIT.
OPEN OUTPUT-FILE FOR OUTPUT.
100-INIT-EXIT.

200-MAIN.
WRITE OUT-REC FROM HEADER-1.
200-MAIN-EXIT.

300-TERM.
CLOSE OUTPUT-FILE.
300-TERM-EXIT.

Then just open the output file in 3.4.

[/ QUOTE ]

MY EYES!!!!!