A simple neural network created for my High School Exam
Create a new directory called "build" and run this command inside it:
cmake --build ..
and then:
make
This will create an executable named "NeuralNetC__"
This program is written in c++20, so specify this during compilation:
g++ -std=c++20 main.cpp -o NeuralNet