(defun pp (s)
(print s)
)
(defun test (n)
(if (> n 0)
(+ n (test (- n 1) ) )
0
)
)
(defun test (n)
(if (> n 0)
(+ (test (- n 1) ) (test (- n 2) ) )
1
)
)
(test 39)
(test 40)
(defun pp (s)
(print s)
)
(defun test (n)
(if (> n 0)
(+ n (test (- n 1) ) )
0
)
)
(defun test (n)
(if (> n 0)
(+ (test (- n 1) ) (test (- n 2) ) )
1
)
)
(test 39)
(test 40)