-
function fib(int x) : int
begin
if x <= 1 then
begin
result := 1;
end
else
begin
result := fib(x – 1) + fib(x – 2);
end
end -
“Answering “Why?” is a two-fold process. First, each aspect of the architecture should correspond to a real business driver. Second, there should be management agreement with those drivers.”
links for 2008-03-12
-
bairos