home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / lang / fortran / 3111 < prev    next >
Encoding:
Internet Message Format  |  1992-08-22  |  784 b 

  1. Path: sparky!uunet!sun-barr!sh.wide!wnoc-tyo-news!ccut!news.u-tokyo.ac.jp!yayoi!tansei1!mhiroshi
  2. From: mhiroshi@tansei.cc.u-tokyo.ac.jp (H. Murakami)
  3. Newsgroups: comp.lang.fortran
  4. Subject: Does your f77 compiler accepts this?
  5. Message-ID: <2873@tansei1.tansei.cc.u-tokyo.ac.jp>
  6. Date: 22 Aug 92 13:08:23 GMT
  7. Sender: news@tansei.cc.u-tokyo.ac.jp
  8. Organization: Hokkaido Univ. However I am subject to tansei for JUNET.
  9. Lines: 11
  10.  
  11. *
  12. *     This is a correct Fortran 77 program (,I think).
  13. *
  14. *     However, many compiler (for example BSD f77) complains
  15. *     there is an error because X is surrounded by the parenthesis.
  16. *     I think only the output-list surrounded by parenthesis
  17. *     which contains more or equal to two items are forbidden.
  18. *
  19.       X = 1.0
  20.       WRITE(*,*) (X)
  21.       END
  22.