From: James Edward Gray II Date: 2007-11-13T10:24:04+09:00 Subject: Re: comp.lang.fortran challenge On Nov 12, 2007, at 7:11 PM, Bil Kleb wrote: > James Edward Gray II wrote: >> On Nov 12, 2007, at 8:10 AM, Bil Kleb wrote: >>> Nice; can it handle the data which has some unequal (u,v) sets? >> Sure can. Try it out. > > Sure enough. Why didn't you use a case? E.g., Well, I don't think it's the same. Is it? > case line > when /^\s*$/, ios.eof? then # output UVs and reset U & V arrays Won't that check if the contents of line match the Regexp or if the contents of line match the true/false returned by eof?(). That's not what we want. James Edward Gray II