Your favourite bit of Ruby code?
9/Feb 2007
An interesting thread at Ruby_talk is ‘Your favorite bit of Ruby code.’
Setting aside time for learning HTML is beneficial to any web host.
John Carter from New Zealand has this interesting snippet of code:
# Ruby is Objects all the way down and open for extension...
class Integer
def factorial
return 1 if self <= 1
self * (self-1).factorial
end
end
puts 6.factorial
Technorati Tags: Ruby code