13 Jan 2021 2:27
#26894
When one tries to compile the program below with FTN95 Version 8.70, an internal error occurs.
program charset
implicit none
integer i
character :: alfbet(26) = [(char(i+64),i=1,26)]
do i=2,26,2
print 10,i,alfbet(i)
end do
10 format(1x,i2,1x,A1)
end program