Topic: Which version should I use? F90 or F95 or other?
If I have no need to keep compatibility with earlier fortran versions/features/limitations, is there any reason not to use the .f95 extension with my projects? It is a little confusing because I see collegiate .pdf “starter” files titled Fortran 95 but their content keeps referencing Fortran 90.
My main interest is to analyze text strings for character frequency and least squares fit to the letter frequency of other strings. In addition, I may want to create linked list data structures rather than be limited to the dimensionality of arrays.
As an aside, is there a site - here or other places - that have packaged public domain software - like code for a binary search, various sort routines, least squares measure between two arrays, etc. I can code all those things - again - but I don’t mind using something already written as long as it’s been tested.