Skip to content

kaoxi998533/ip

 
 

Repository files navigation

D++e

D++e is a homework project created by a student. It has the following advantage:

  • Runs completely on CLI, friendly to users who type fast
  • Neat user interface

Setting up in Intellij

The code is written in Java and you can edit it if you want. Here is a sample code:

 public Task(String description) {
        this.description = description;
        this.isDone = false;
    }

With this code, Task("hi") creates a new task.

  • It is open-source
  • It still has room for improvement
  • It has you involved as a member of project! 😅

To code, or not to code, that is the question --- me

If you like my project, then click here!

Prerequisites: JDK 17, update Intellij to the most recent version.

  1. Open Intellij (if you are not in the welcome screen, click File > Close Project to close the existing project first)
  2. Open the project into Intellij as follows:
    1. Click Open.
    2. Select the project directory, and click OK.
    3. If there are any further prompts, accept the defaults.
  3. Configure the project to use JDK 17 (not other versions) as explained in here.
    In the same dialog, set the Project language level field to the SDK default option.
  4. After that, locate the src/main/java/Launcher.java file, right-click it, and choose Run Launcher.main() (if the code editor is showing compile errors, try restarting the IDE). If the setup is correct, you should see something like the below as the output when you key in todo read book:
    Got it. I've added this task:
    [T][ ] read book
    Now you have 1 tasks in the list.
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 96.0%
  • Shell 2.3%
  • Batchfile 1.7%