In the manual is declared:
A $ or \ edit descriptor is provided to facilitate the output of requests to the screen, without generating a new line. The descriptor must terminate the format specification. The comma preceeding \ is optional (like it is with the / descriptor). For example:
WRITE(*,100) K
100 FORMAT('Old K=',I5,'Enter new value',$) END
My version: CHARACTER NAMEIN*32 Write (KRW,'(' Filename of Input-File :>',$)') Read (KRW,'(A)') NAMEIN
But this doesn't work. The cursor remains behind the output ' Filename of Input-File :>' indeed, but when the new value is keyed in, the cursor jumps to the next line !? What goes wrong?