It's some kind of artificial life simulation.
Life for iPhone (iTunes)



Life for iPhone (iTunes)
You will be able to keep seeing its mysterious pattern.
I'm a Japanese programmer. I write about C#, Ruby and JavaScript.
def fib(n)
if n < 2
1
else
fib(n - 2) + fib(n - 1)
end
end
puts fib(10) #=> 89
class Programmer
def says(message)
puts message
end
end
shunsuk = Programmer.new
shunsuk.says "I came back!"