Path: utzoo!utgpu!news-server.csri.toronto.edu!qucdn!boydj Newsgroups: comp.lang.fortran Subject: Re: Fortran 77 Style Guide (long, REPOST) Organization: Queen's University at Kingston Date: Thursday, 13 Sep 1990 12:26:01 EDT From: Jeff Boyd Message-ID: <90256.122601BOYDJ@QUCDN.BITNET> Distribution: na References: <26B89BE1.4349@ics.uci.edu> <59012@lanl.gov> <1794@ccadfa.adfa.oz.au> <1990Sep10.141639.970@maverick.ksu.ksu.edu> If you wanted to manage your FORMATs a little more carfully, use PARAMATERs, eg. PARAMETER (UNIT1=10,FMT1=1) 1 FORMAT ( ... ) and later WRITE (UNIT1,FMT1) var_list providing your Fortran allows a named constant in the FMT option. I've worked on some that didn't, but it's handy sometimes for managing odd problems.