File name: Hello world
public class HelloWorld{
public static void main(String[] args){
String message = "Hello world";
System.out.println(message.toUpperCase());
}
}
And it should work but its says
Replace this use of System.out or System.err by a logger.
I'm using Visual Studio Code and I can't figure out why its not working. Did I do something wrong with setting up VS code?
Thanks