duke

User Guide

Table of Contents

1. Introduction

YATL is Yet Another Todo List that helps a person to keep track of various things.

2. Quick Start

  1. Ensure you have Java 11 or above installed in your Computer.
  2. Download the latest YATL.jar here.
  3. Copy the file to the folder you want to use as the home folder for your todo list.
  4. Double-click the file to start the app. The GUI should appear in a few seconds. UI

3. Features

3.1 Create a todo: todo

Create a simple todo task with a description.

Format: todo TASK

Example:

3.2 Create an event: event

Create a event task with a description, start time, and date.

Format: event TASK /at START_TIME DATE

Example:

3.3 Create a deadline: deadline

Create a deadline task with a description, end time, and date.

Format: deadline TASK /by END_TIME DATE

Example:

3.4 List all added tasks: list

Lists all your added tasks.

Format: list

3.5 Search for an added task: find

Finds the tasks have that name that contain any of the given keywords. Keywords are not matched exactly, minor typos will still yield results.

Format: find KEYWORD [MORE_KEYWORDS]

Examples:

3.6 Mark task as done: done

Mark a task as done.

Format: done INDEX

Example:

3.7 Delete a task: delete

Delete a task.

Format: delete INDEX

Example:

3.8 Quit the program: bye

Close the program.

Format: bye