"Unlock the potential of chat bots." - by nobody
Venus allows you to do so more more, for example,
- track your event dates
- track your event time
- store or load your events
easilysuper easily!
And, it's paid free! Yes, free! ✌️
To start,
- You have to download it.
- Double click it.
- Configure the project to use JDK 11 (not other versions) as explained in here.
In the same dialog, set the Project language level field to theSDK default
option. - Either run it from intellij from
./src/java/Venus/Venus.java
or./gradlew run
- Or, alternatively, use the venus.jar file in our newest release!
Remember, run with SDK default
and Java 11!
Features:
- Different class types.
- Save and load tasks whenever you start the program
- Add delight to the experience when all tasks are complete 🎉
If you are a java programmer, here is the program main
method:
public static void main(String[] args) {
Venus venus = new Venus("data" + File.separator + "venus.txt");
venus.run();
}