search for: iswrong

Displaying 2 results from an estimated 2 matches for "iswrong".

2006 Mar 06
13
Internal Server Error - I want to cry
I got a brand new Fedora Core 4 box and was all excited to get Rails running on it. That was about two days ago. I did all the ''yum install ruby, etc. etc. etc.'', then ''gem install rails, etc. etc. etc''. I''ve tried running Rails with httpd (fastcgi and cgi), lighttpd (scgi, fastcgi, cgi), mongrel, webrick, and even ''ruby
2012 Nov 10
2
Problem with recursion
I know that maybe it will be stupid question. What iswrong with it (i think that i have to do the "stop moment", but i dont know how) fibbonacci=function(x) { while(x>0) { if (x==1 || x==2) { return(1) } else fibbonacci(x-1)+fibbonacci(x-2) } } -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-recursion-tp4649162...