I was given some Fortran code (90, I believe) and I'm trying to figure out what it does. I know no Fortran, but do know Perl.
Here is a snippet that I've not been able to figure out:
fmly='I:\CEX\Fmly'
fmlyfile=fmly(1:23)//yearqtr(qtrcnt)
open(unit=13,file=fmlyfile)
I know that // is a concatenation operator, but I'm confused about what the fmly(1:23) part is doing.