OSDN Git Service

Merge branch 'master' of git@github.com:mzp/scheme-abc
[happyabc/happyabc.git] / scm / example / scope.scm
1 ;;;  3628800
2 (module foo ()
3         (define (fact n)
4           (if (<= n 1)
5               1
6               (* n (fact (- n 1))))))
7 (trace (foo.fact 10))