I’m trying to separate functions from main.cpp to make a better overview in the project. The idea is to place these functions in another .cpp file (called functions.cpp or something) and include this file in main.cpp.
I tried using #include “functions.cpp”, but only received Error 1
Does anyone have a good solution?
My skills are very basic