ok, so, just for clarification..
program test
write(*,*) 'i=',i
end
under 8.2/64 reports an undefined variable.
but
program test
call test1
end
subroutine test1
write(*,*) 'i=',i
end
reports 0.
One thing i notice is that under 8.20/64 a console application is generated but under 8.1/32, a white window is created with the result. is there a switch for this (i'd prefer the white window method).
both compilation scripts have '/windows' specified.
K