Quote Originally Posted by The_Mark
Just to show you I'm serious, I'll tell you that the next public release of EB will happen within d days, where
Code:
d = f(5; 4), where

f(m; n) = n + 1, when m = 0
        = f(m-1; 1) when m > 0 and n = 0
	= f(m - 1; f(m; n - 1)) when m > 0 and n > 0
StackOverflowException!