We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6645475 commit 336b34bCopy full SHA for 336b34b
1 file changed
JavaLecture2.java
@@ -0,0 +1,18 @@
1
+// package com.rit;
2
+
3
+public class JavaLecture2 {
4
5
+ public static void main(String[] args) {
6
7
+ java.lang.System.out.println("Hi Java");
8
+ // jdk-15 --- JDK
9
+ // java.base --- Defines the foundational APIs of the Java SE Platform
10
+ // java --- Package
11
+ // lang --- Sub Package
12
+ // System --- Class
13
+ // out --- Field
14
+ // println() --- Method
15
+ // "Hi Java" --- String Literal
16
17
+ }
18
+}
0 commit comments