hello
I made my first program in Java and I try to compile it using cmd but unfortunatelly result of this
symbol: method printIn(String)
location: variable out of type PrintStream
How can I fix it?
The code That I wrote it was:
class hello {
public static void main (String args []){
System.out.PrintIn("hello");
}
}
I save it in this mode hello.java