Datagrams on the Wings of Pigeons

RFC 1149

Object-Oriented Recursion

To understand recursion, you must first understand recursion…

Google “recursion” and the top result will be “Did you mean: recursion

In college one of my professors had stated that recursion is a method for making the computer do most of the work for you. Its a way to reduce a a complex algorthm to a few lines with a base case.

But object-oriented recursion is a bit different;

Hello, World

My initiation into blogging

Hello World
1
2
3
4
5
6
class HelloWorld
  def hello
      puts("Hello, World\n")
      puts("Yes, it's a cheesy start of a blog")
  end
end