We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b81150 commit ead16e4Copy full SHA for ead16e4
1 file changed
CodeStart/chap_01/HelloWorld/HelloWorld.java
@@ -1,6 +1,18 @@
1
+/*****************************************************************************
2
+ * PROJECT: Java-101 Comprehensive Programming Course
3
+ * MODULE: Introduction to Java Fundamentals
4
+ * LESSON: 1.1 - Hello World Implementation
5
+ *
6
+ * AUTHOR: Dr. Saad Laouadi, Ph.D.
7
+ * CREATED: March 2025
8
9
+ * Copyright © 2025 Dr. Saad Laouadi. All Rights Reserved.
10
+ * See LICENSE file for complete terms.
11
+ *****************************************************************************/
12
+
13
public class HelloWorld {
14
15
public static void main(String[] args) {
16
System.out.println("Hello world!!!");
17
}
-}
18
+}
0 commit comments