I am new to coding in VS Code. I want to run a basic "hello world" java program which I'm unable to run.
I installed the java extension pack for vscode. I have also installed java-11 and maven using homebrew.
import java.io.*;
public class Hello {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
I saw few videos where it shows that run and debug buttons pop up in the code editor but those buttons do not pop up in my code. I can post the screenshots of someone requires it for solving my problem.
I am not able to run the code. Please, someone guide me through the process of running this code. Thank you.