Skip to content

Commit

Permalink
Merge pull request #50 from Cazh1/#19-Implement-Parser-Support
Browse files Browse the repository at this point in the history
#19 implement parser support
  • Loading branch information
DextheChik3n authored Oct 16, 2023
2 parents 0667ad8 + dcb4058 commit c5043aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/seedu/duke/Duke.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ public static void main(String[] args) {
+ "| | | | | | | |/ / _ \\\n"
+ "| |_| | |_| | < __/\n"
+ "|____/ \\__,_|_|\\_\\___|\n";

System.out.println("Hello from\n" + logo);
System.out.println("What is your name?");
Scanner in = new Scanner(System.in);
Expand Down
1 change: 0 additions & 1 deletion src/main/java/seedu/duke/command/AddDishCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
/**
* Adds a menu item to the user
*/

public class AddDishCommand extends Command {
public static final String COMMAND_WORD = "add";
Dish dish;
Expand Down

0 comments on commit c5043aa

Please sign in to comment.