Skip to content

Commit 080602b

Browse files
authored
Introduction.
1 parent 2006b88 commit 080602b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Lesson 1.java

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Student: Griffin Gowdey.
2+
// Instructor: Daniel Goodman.
3+
// Class Number: ITSE1479-86039.
4+
// Class Name: Java Programming.
5+
// Semester: Fall 2020.
6+
// Lesson 1.
7+
8+
/*
9+
Assignment:
10+
Write a program that prints a greeting of your choice,
11+
perhaps in a language other than English.
12+
*/
13+
14+
public class Lesson1
15+
{
16+
public static void main(String[] args)
17+
{
18+
System.out.println("Hello, world!");
19+
}
20+
}

0 commit comments

Comments
 (0)