0
Println("result")
i think an error
1 Antwoord
+ 1
Your statement in Java to print in the next line must be like this:
System.out.println("result");
Note:In Java "print" or "println"is not a class. So it cannot start with capital letter.
Here, "System"is a class and that is why it starts with 'S' not 's'.