- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaFundamentals.java
More file actions
Latest commit
22 lines (20 loc) · 791 Bytes
/
Copy pathJavaFundamentals.java
File metadata and controls
22 lines (20 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
packagecom.sprintech.javafundamentals;
/**
*
* @author Ayub
*/
publicclassJavaFundamentals {
publicstaticvoidmain(String[] args) {
System.out.println();
System.out.println("""
\"The First step towards getting somewhere is to decide
that you are not going to stay where you are.\" ~ Chauncey Depew
""");
System.out.println();
System.out.println("""
Having Know that, I Ayub Gakuru Kibirio,I embarked on
Learning and Discovering New Things. Being a Software Engineer
means learning never ends. I'm going for it!.
""");
}
}