Welcome to the DSL TASK MANAGER a simple scripting program
that creates tasks with a taskName a topic and time to end this task.
- It uses one line syntax
- Easy to read because its like english
- It creates an executable and you can countdown the tasks
- You can create variables
do study for 30 minutes about "Computer sciense"
do run for 20 minutes
do draw for 300 seconds
set marathon_time = 60
do marathon for marathon_time minutesMake sure you have The gcc compiler and Makefile tools from gnu.
- clone the reposetory
git clone https://github.com/skinwalker3654/TASK_DSL_MANAGER.git- compile the built-in compiler
make- use the executable to compile your programs
./compile yourprogram.txt- run the executable
./main # This file is created after you compile your codeTASK_DSL_MANAGER
├── compiler/
| └── compiler.c
|
├─ headers/
| ├── task.c
| └── task.h
|
├── README.md
├── Makefile
└── LICENSE