Welcome to the CHICKEN Scheme pasting service
trace functionality added by kiatoa on Sun Nov 23 19:36:05 2014
csi> (define (myfunc a b)(+ a b)) csi> (trace myfunc) ; tracing myfunc csi> (myfunc 1 2) [0] (myfunc 1 2) [0] myfunc -> 3 3
csi> (define (myfunc a b)(+ a b)) csi> (trace myfunc) ; tracing myfunc csi> (myfunc 1 2) [0] (myfunc 1 2) [0] myfunc -> 3 3