I’ve noticed that if I make a Java program in TextEdit or TextWranger and then try to compile it in Terminal, I get faulty criticism like this:
PiesTest.java:2: error: unclosed string literal
System.out.println("How many apples do you have?”);
And yet, if I create a Java program in Eclipse, it’ll compile perfectly in Terminal.
Why is this Happening? How do I fix this?
PiesTest.java:2: error: unclosed string literal
System.out.println("How many apples do you have?”);
And yet, if I create a Java program in Eclipse, it’ll compile perfectly in Terminal.
Why is this Happening? How do I fix this?