From: nephish Date: 2006-08-08T22:40:06+09:00 Subject: Re: prob with tutorial example Ben Nagy wrote: > 'i' before 'e', except after 'c'. > > ben > > > -----Original Message----- > > From: nephish [mailto:nephish@gmail.com] > > Sent: Tuesday, August 08, 2006 8:25 PM > > To: ruby-talk ML > > Subject: prob with tutorial example > > > > Hey there, > > just got the pickaxe book, and i am working thru the beginning. > > > > one example prog is this > > > > #!/usr/bin/ruby > > > > def fib_up_to(max) > > i1, i2 = 1, 1 > > while i1 <= max > > yeild i1 > > i1, i2 = i2, i1 + i2 > > end > > end > > > > fib_up_to(1000) {|f| print f, " "} > > > > when i try to execute it from a terminal, i get this: > > > > ./testl.rb:6:in `fib_up_to': undefined method `yeild' for main:Object > > (NoMethodError) > > from ./test.rb:11 > > > > am i doing something wrong? i have this installed in debian sarge. > > > > thanks > > > > thanks, gents. i don't mean to waste fellow coders time. I am new to ruby (installed it yesterday) and i thought something was wrong with my interpreter. Now i think something is wrong with my keyboard. I find that in most of my code, a problem is usually traced to somewhere between the keyboard and the chair . thanks, -sk