Would the following code work? (I know I could test it out and will when I'm in front of a computer that has eclipse/netbeans. I'm currently at work and just don't have access to any programming environment and the curiosity is killing me!!!)
So to satisfy my curiousity
public class Test {
public static void main (String[] args) {
int x = 10;
int y = 9;
String condition = ">";
if (x condition y) {
System.out.println("This works");
} //end if
} //end main
}//end class
Thanks a bunch for the help!
