--- Comment #3 from kargl at gcc dot gnu dot org 2007-04-18 21:03 ---
(In reply to comment #2)
> Subject: Re: Inability to read ascii text with generic 'f' format
>
> read(10,*) doesn't work. I have access to two other compilers
> (SGI and Portland Group) and both of them accepted the
--- Comment #2 from Catherine dot M dot Moroney at jpl dot nasa dot gov
2007-04-18 18:16 ---
Subject: Re: Inability to read ascii text with generic 'f' format
read(10,*) doesn't work. I have access to two other compilers
(SGI and Portland Group) and both of them accepted the
read(10,
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2007-04-18 03:44
---
I think you should just use read(10,*) or better yet, read the whole line into
a single string and search for the "=" in the string, noting the_position, then
use read(stringname(the_position:),*) input list
In o