How can I load two packages with the same name but located in seperate folders?
Example:
/src/alpha/foopackage.ads
/src/beta/foopackage.ads
I then would like to use foopackages using:
with alpha.foopackage;
with beta.foopackage;
Also, if you have any other tips about organizing projects in Ada please write. There is not much info about project organization in Ada on the net.