Paul, How it works?
Here is the file with fixed form Fortran text which uses more or less standard 8 space long TAB for the left margins of all lines. The line with continuation is intentionally made 73 characters long.
parameter (N=5)
real*8 X(N), Y(N)
Data X/1e1, 1e2, 1e3, 1e4, 1e5/
Data Y/2.2, 66, 8333, 1111, 777/
i=winio@('%ww%pv%pl[framed,x_array,scale=log_log,N_GRAPHS=1]',
* 625,500,N,X,Y)
end
Compiling file called aaa.for with
ftn95 aaa.for /link /wide_source
works OK. Shortening the long line to 72 characters of course works too even without /wide_source. But compilation
ftn95 aaa.for /link /tabs 6
or any other tab value does not work.
(By the way the plot displays X axis correctly while Y axis incorrectly. But if resize it with the mouse little bit the X axis becomes wrong while Y is displayed correctly. Do everyone see the same behavior or this is just me?)