Step 1: First Line of Code
Let's start simple, print a message to the console. Here is some starter code:
/** Main.java */
// Note: All code typically lives within a class
public class Main {
// This method is the entry point for a program. Research what each of the keywords mean.
public static void main(String[] args) {
// TODO: Print a Welcome Message Here
}
}