Skip to content

Commit

Permalink
Merge branch 'master' into #19-Implement-Parser-Support
Browse files Browse the repository at this point in the history
  • Loading branch information
Cazh1 authored Oct 16, 2023
2 parents 108544c + 0667ad8 commit dcb4058
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/main/java/seedu/duke/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
public class Duke {
public static void main(String[] args) {
String logo = " ____ _ \n"
+ "| _ \\ _ _| | _____ \n"
+ "| | | | | | | |/ / _ \\\n"
+ "| |_| | |_| | < __/\n"
+ "|____/ \\__,_|_|\\_\\___|\n";
+ "| _ \\ _ _| | _____ \n"
+ "| | | | | | | |/ / _ \\\n"
+ "| |_| | |_| | < __/\n"
+ "|____/ \\__,_|_|\\_\\___|\n";

System.out.println("Hello from\n" + logo);
System.out.println("What is your name?");
Scanner in = new Scanner(System.in);
System.out.println("Hello " + in.nextLine());
}
}

0 comments on commit dcb4058

Please sign in to comment.