public class Hello {
    /*
     * Hello.java
     * Author: Sam
     * Prints a welcome message to the terminal
     */
    public static void main(String[] args) {
        //single-line comment
        System.out.println("Changing the file");  //comment after a statement
    }
}
