Skip to content

Commit

Permalink
A-TextUiTesting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-109 committed Jan 28, 2021
1 parent 84d5192 commit fc21c33
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/java/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

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

Expand Down

0 comments on commit fc21c33

Please sign in to comment.