Skip to content

Commit 336b34b

Browse files
authored
Add files via upload
1 parent 6645475 commit 336b34b

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

JavaLecture2.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)