home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!sun-barr!sh.wide!wnoc-tyo-news!ccut!news.u-tokyo.ac.jp!yayoi!tansei1!mhiroshi
- From: mhiroshi@tansei.cc.u-tokyo.ac.jp (H. Murakami)
- Newsgroups: comp.lang.fortran
- Subject: Does your f77 compiler accepts this?
- Message-ID: <2873@tansei1.tansei.cc.u-tokyo.ac.jp>
- Date: 22 Aug 92 13:08:23 GMT
- Sender: news@tansei.cc.u-tokyo.ac.jp
- Organization: Hokkaido Univ. However I am subject to tansei for JUNET.
- Lines: 11
-
- *
- * This is a correct Fortran 77 program (,I think).
- *
- * However, many compiler (for example BSD f77) complains
- * there is an error because X is surrounded by the parenthesis.
- * I think only the output-list surrounded by parenthesis
- * which contains more or equal to two items are forbidden.
- *
- X = 1.0
- WRITE(*,*) (X)
- END
-