From: Bil Kleb Date: 2006-03-02T23:48:38+09:00 Subject: Re: Write Fortran in Ruby Bil Kleb wrote: > Try to write the following Fortran 77 program (note the > 6 space indentation) in Ruby so that it looks as close > to the Fortran as possible without extending Ruby: > > program ii > integer i > do i=0,10 > print*,i > if (i.gt.5) goto 1 > enddo > 1 print*,i*i > end Sorry, output should be: 0 1 2 3 4 5 6 36 -- Bil http://fun3d.larc.nasa.gov