Re: hi all

2000-10-11 Thread wim veninga
Hi myth, Answer on Q1 : The variable out is an static variable, this means that for all instances of System there is only one out variable (all instances of System have a pointer to the same adress in memory on wich out is stored). You can thus call System.out.println() and it will print a

Re: hi all

2000-10-11 Thread Miles Daffin
Question 1. The doubt is about System.out.println() System is a class and out is a variable in System class. Yes - a public static one, which means: a) The world can use it. b) When the world wants to use it they prefix the name of the owning class rather than an instance reference. a.how

RE: hi all

2000-10-11 Thread Kemp Randy-W18971
I am new to the Orion world and I wasn't sure if my first question got to the group. I need to convert some static HTML pages from an old server and add them to the Orion server. One includes a Perl CGI script. 1. In order to add the HTML pages, should I follow the examples in the Orion primer