We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81367c5 commit 7e03915Copy full SHA for 7e03915
src/main/java/Duke.java
@@ -4,7 +4,12 @@
4
5
public class Duke {
6
public static void main(String[] args) throws DukeException{
7
- System.out.println("Hello from Gambit, how may I assist you today?");
+ String logo = " ____ _ \n"
8
+ + "| _ \\ _ _| | _____ \n"
9
+ + "| | | | | | | |/ / _ \\\n"
10
+ + "| |_| | |_| | < __/\n"
11
+ + "|____/ \\__,_|_|\\_\\___|\n";
12
+ System.out.println("Hello from\n" + logo);
13
Scanner sc = new Scanner(System.in);
14
ArrayList<Task> list = new ArrayList<>();
15
0 commit comments