Hello everyone. I seem to be having an odd issue, at least it is odd to me, because I don't understand the cause of it. I can start a brand new java application project in Xcode, and no matter what I build the only thing I get when I run the program is "Hello World!" from my Xcode Run Log. If I make a new Java Class Library in xcode, it always initializes with my HelloWorld.java file in the src directory. Anyway, my issue is that I can't resolve this, and whenever I try to make new java applications I'm thwarted by the program I wrote a month ago saying "Hello World!"
please help if you know what's wrong.
Source Code:
resulting Log Output after compiling and running:
please help if you know what's wrong.
Source Code:
import javax.swing.JOptionPane;
public class GameOfLife {
public static void main(String[] args){
JOptionPane.showInputDialog(null, "Input File Type");
}
}
resulting Log Output after compiling and running:
[Session started at 2006-10-05 17:43:28 -0400.]
Hello World!
GameOfLife has exited with status 0.