Hi Little Acorn,
I forget when it was changed, probably when Fortran-77 came out, but it stopped being necessary to have a format statement unless you really wanted one. So, you can slip the formatting information into the WRITE statement, keep it in a numbered FORMAT statement, or use 'unformatted' output. Slipping it into the WRITE statement means putting the formatting information in as a character constant, or variable. Hence, you could equally well write:
WRITE (6, 100) I, A, CHAR
100 FORMAT(I3, F10.2, A5)
or
WRITE (6, '(I3, F10.2, A5)') I, A, CHAR
or
WRITE (6, *) I, A, CHAR
although the last of these three will be laid out as FTN95 sees fit. I've assumed that CHAR is CHARACTER*(5), and simply A would have been enough.
To get your code fragments laid out nicely in the forum, highlight them and click the 'code' button. (You could precede your code with the word code in square brackets and follow it with \code in square brackets, but that is more work). You can do bold, italic, underline etc through this method.
FTN95 installs a program called the Salford Diagnostic Tool. If you run this, it finds all the installed copies of particular programs, and more importantly, reports their version numbers. I recommend looking at the page on the Silverfrost website where it reports upgrades and bug fixes to see how things are coming along.
Eddie