Skip to content

Commit 7e03915

Browse files
committed
A-TextUiTesting
1 parent 81367c5 commit 7e03915

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/main/java/Duke.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44

55
public class Duke {
66
public static void main(String[] args) throws DukeException{
7-
System.out.println("Hello from Gambit, how may I assist you today?");
7+
String logo = " ____ _ \n"
8+
+ "| _ \\ _ _| | _____ \n"
9+
+ "| | | | | | | |/ / _ \\\n"
10+
+ "| |_| | |_| | < __/\n"
11+
+ "|____/ \\__,_|_|\\_\\___|\n";
12+
System.out.println("Hello from\n" + logo);
813
Scanner sc = new Scanner(System.in);
914
ArrayList<Task> list = new ArrayList<>();
1015

0 commit comments

Comments
 (0)