home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.fortran
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!cs.utexas.edu!convex!convex!joelw
- From: joelw@convex.com (Joel Williamson)
- Subject: Re: A VMS Fortran I/O question
- Sender: usenet@news.eng.convex.com (news access account)
- Message-ID: <1992Dec31.183402.23078@news.eng.convex.com>
- Date: Thu, 31 Dec 1992 18:34:02 GMT
- References: <C03pyp.E4v@news.cso.uiuc.edu> <1992Dec31.153918.16765@e2big.mko.dec.com>
- Nntp-Posting-Host: mozart.convex.com
- Organization: Engineering, CONVEX Computer Corp., Richardson, Tx., USA
- X-Disclaimer: This message was written by a user at CONVEX Computer
- Corp. The opinions expressed are those of the user and
- not necessarily those of CONVEX.
- Lines: 24
-
- In article <1992Dec31.153918.16765@e2big.mko.dec.com> lionel@quark.enet.dec.com (Steve Lionel) writes:
- >
- >In article <C03pyp.E4v@news.cso.uiuc.edu>, ercolessi@uimrl3.mrl.uiuc.edu
- >(furio ercolessi) writes...
- >>Does anybody know (well, Steve Lionel certainly knows, but maybe
- >>he's in holiday ...) what should I do to kill the carriage control character
- >>on the standard output in VMS Fortran ?
- >>
- >>That is, I would like to be able to code something like
- >> PRINT '(a)','Hello'
- >>instead of
- >> PRINT '(1x,a)','Hello'
-
- Having read Steve Lionel's response (deleted), I suppose I'm missing
- something obvious, but why not:
-
- PRINT '(a)', ' Hello'
-
- ^
- Blank carriage control in the string.
-
- Joel Williamson
- --
-
-