g++ -I./dependencies -I./include main.cpp commands/*.cpp src/* -o ../project-guild-test/guild
# create a guild project file structure in the current folder and take the name of the current folder
./guild init
# create a guild project file structure in the current folder and take the name of the current folder
./guild init <project-name>
# show the help message
./guild help
# build the project
./guild build
# run the project
./guild run
# add simple files to project - beta
./guild add <link>
./guild add https://raw.githubusercontent.com/ninjaasmoke/guild-sample-header-lib/refs/heads/main/StringUtils.h
directly adds file to /packages
folder. need to start work on package management. OMG this is soo exciting!!!