Search found 1 match

by lotrsimp12345
Sun Mar 07, 2010 10:09 pm
Forum: Scheme
Topic: Need help with a function in DrScheme
Replies: 1
Views: 7355

Need help with a function in DrScheme

I can write the recursion version correctly need help with writing a do loop in DrScheme. After the do loop the variable x is sent to car L intially and then is updated to first element of everything but first element in list. (Toggle Plain Text) (define (sumiteration L) (do ((x (car L) (car(cdr L))...