But why would the lines in the 2000 case be easier to review per line?
Which of these programs is easier to review
{x{x,sum -2#x}/0 1}
def f(n): if n <= 1: return n else: return f(n-1) + f(n-2)
Which of these programs is easier to review
or They're both the same program