From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_00,FROM_WORDY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 10261c,cfbb90c56a313e70 X-Google-Attributes: gid10261c,public X-Google-Thread: 103376,cfbb90c56a313e70 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-09-10 17:59:36 PST Path: supernews.google.com!sn-xit-02!sn-east!supernews.com!news-feed.riddles.org.uk!arclight.uoregon.edu!vixen.cso.uiuc.edu!howland.erols.net!nntp.flash.net!news.flash.net!not-for-mail From: "Ken Garlington" Newsgroups: comp.lang.ada,comp.lang.pascal.misc References: <8o3s2a$9ph$1@nnrp1.deja.com> <8o4bfq$v0h$1@slb7.atl.mindspring.net> <8obv01$7hu1@news.cis.okstate.edu> <39A991F3.A8D8BED7@easystreet.com> <8ofh6j$2anb@drn.newsguy.com> <39B59223.667C085D@brighton.ac.uk> <39B932E7.90927D13@ebox.tninet.se> <39B93D0A.27E841C4@stack.nl> <39BA7861.46333D5D@ebox.tninet.se> <39BBB97E.FD03B359@stack.nl> Subject: Re: From extended Pascals to Ada 95 guide X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Message-ID: Date: Mon, 11 Sep 2000 00:59:35 GMT NNTP-Posting-Host: 216.215.65.100 X-Complaints-To: abuse@flash.net X-Trace: news.flash.net 968633975 216.215.65.100 (Sun, 10 Sep 2000 19:59:35 CDT) NNTP-Posting-Date: Sun, 10 Sep 2000 19:59:35 CDT Organization: FlashNet Communications, http://www.flash.net Xref: supernews.google.com comp.lang.ada:580 comp.lang.pascal.misc:287 Date: 2000-09-11T00:59:35+00:00 List-Id: "Marco van de Voort" wrote in message news:39BBB97E.FD03B359@stack.nl... > > > > Understanding a bit about objects is necessary if you want > > > > something like Hello World. > > > > > > No, you can make a perfectly good "Hello World" without objects. > > Dont you need to create a subclass of some obscure Java > > class to even generate a program with a null body ?? > > I was talking about programming in general. > If you need that for Java, I consider that just another reason to NOT > use Java. // example complete Java "Hello World" program class HelloWorld { public static void main (String args[]) { System.out.println("Hello World!"); } } // alternative complete Java "Hello World" program, as a Web-page applet import java.awt.Graphics; public class HelloWorldApplet extends java.applet.Applet { public void paint(Graphics g) { g.drawString("Hello World!", 5, 25); } }