Re: Problem with gcj and gij

2006-01-04 Thread René Berber
Alireza Ghasemi wrote: > I tried to compile a simple Hello,world program with gcj. The code was : > public class Welcome { > public static void main( String args[] ) > { > System.out.println( "Welcome to Java Programming!" ); > } > } > I created Welcome.class with "gcj -C Welcome.

Re: Problem with gcj and gij

2006-01-04 Thread Gerrit P. Haase
Alireza wrote: > Hello, > I tried to compile a simple Hello,world program with gcj. The code was : > public class Welcome { > public static void main( String args[] ) > { > System.out.println( "Welcome to Java Programming!" ); > } > } > I created Welcome.class with "gcj -C Welcome

Problem with gcj and gij

2006-01-03 Thread Alireza Ghasemi
Hello, I tried to compile a simple Hello,world program with gcj. The code was : public class Welcome { public static void main( String args[] ) { System.out.println( "Welcome to Java Programming!" ); } } I created Welcome.class with "gcj -C Welcome.java" .then I tried to execute it