2 [[FactTailCall|FactTailCall]] hier beschreiben...
9 ##print 'entered fact ', x
14 print 'leaving fact ', result
18 def fact_tail_call(x,c):
19 #print 'entered fact_ ', x, ' ', c
25 result= fact_ (x-1,c*x)
26 print 'leaving fact_ ', result
30 fact_tail_call (200, 1)
36 [[CategoryCodeSnippets|CategoryCodeSnippets]]