Re: [arch-general] Java Problem

2014-12-07 Thread Ondřej Kučera
Hi, On 8.12.2014 02:56, Hunter Jozwiak wrote: On 12/7/14, Ondřej Kučera wrote: Hi, On 8.12.2014 01:59, Hunter Jozwiak wrote: Hello: I have come accross an interesting issue with Java. Let's say I fashion a simple Hello World app, and entitle it hello.java The code would be: class hello { pub

Re: [arch-general] Java Problem

2014-12-07 Thread Hunter Jozwiak
On 12/7/14, Ondřej Kučera wrote: > Hi, > > On 8.12.2014 01:59, Hunter Jozwiak wrote: >> Hello: >> I have come accross an interesting issue with Java. Let's say I >> fashion a simple Hello World app, and entitle it hello.java The code >> would be: >> class hello >> { >> public void main(String[] ar

Re: [arch-general] Java Problem

2014-12-07 Thread Ondřej Kučera
Hi, On 8.12.2014 01:59, Hunter Jozwiak wrote: Hello: I have come accross an interesting issue with Java. Let's say I fashion a simple Hello World app, and entitle it hello.java The code would be: class hello { public void main(String[] args) { System.out.println("Hello World!"); } } Then, I comp

Re: [arch-general] Java Problem

2014-12-07 Thread Hunter Jozwiak
On 12/7/14, Toyam Cox wrote: > On Sun, Dec 7, 2014 at 7:59 PM, Hunter Jozwiak > wrote: > >> Hello: >> I have come accross an interesting issue with Java. Let's say I >> fashion a simple Hello World app, and entitle it hello.java The code >> would be: >> class hello >> { >> public void main(String

Re: [arch-general] Java Problem

2014-12-07 Thread Toyam Cox
On Sun, Dec 7, 2014 at 7:59 PM, Hunter Jozwiak wrote: > Hello: > I have come accross an interesting issue with Java. Let's say I > fashion a simple Hello World app, and entitle it hello.java The code > would be: > class hello > { > public void main(String[] args) > { > System.out.println("Hello W

[arch-general] Java Problem

2014-12-07 Thread Hunter Jozwiak
Hello: I have come accross an interesting issue with Java. Let's say I fashion a simple Hello World app, and entitle it hello.java The code would be: class hello { public void main(String[] args) { System.out.println("Hello World!"); } } Then, I compile the code as a regular user, with javac hello.