why is the shortcut, sout, not working for me in IntelliJ IDE
Answered
I've been doing mooc.fi to learn java but because my computer didn't let me install netbeans I used a plug in within intelliJ. For some reason it doesn't respond when I use the shortcut sout but instead puts SQLOutput
Please sign in to leave a comment.
Hi Mona,
The live template for sout is called from inside a method. It can be main method or any other method.
void method1() {System.out.println(); // 'sout' expanded here
}