Search found 1 match

by korekaradesu
Sun Apr 21, 2013 9:09 pm
Forum: Scheme
Topic: Simply Scheme Exercises. Chapter 06 True and False.
Replies: 3
Views: 20949

Simply Scheme Exercises. Chapter 06 True and False.

Hey Schemers, new Scheme user here. Looking for enlightenment on an exercise I'm doing at the end of Simply Scheme chapter 06 True and False . Boring exercise 6.1 has the following cond expression: (cond (empty? 3) (square 7) (else 9)) In my head, this should return the value of (square 7). But in t...