java main class code example
Example 1: java main
public class Jacob {
public static void main(String[] args) {
//code here
}
}
Example 2: java main method
// for autocomplete just type
main
// and a shortcut shoould apear
public class Jacob {
public static void main(String[] args) {
//code here
}
}
// for autocomplete just type
main
// and a shortcut shoould apear