Just Do It - Nike
- Howie is easy-to-use
- Free
- Keeps your life
inon track!
-
- Download the latest JAR file from here!
-
- Open up your command line.
-
- Type in the following command:
java -jar C:\filepath\of\the\downloaded\jar\file
Adds shower into the to-do list. todo shower
Add a deadline. deadline Assignment Submission /by Thursday
Add an event. event Prom date /from Wed 9pm /to Wed 11pm
Mark an item as completed. mark 1
/ mark 3
Unmark an item as uncompleted unmark 3
To exit. bye
Alternatively, you can clone the repository and run Howie.java, as shown below.
public class Howie {
public static void main(String[] args) throws Exception {
Ui ui = new Ui();
Storage storage = new Storage();
TaskList taskLs = storage.readFile();
while (true) {
String[] input = ui.getUserCommand();
try {
Command command = new Parser().parseCommand(input);
command.setData(taskLs);
command.execute();
} catch (DukeException e) {
System.out.println(e.getMessage());
Ui.printVLine();
}
}
}
}