Name: Anonymous 2011-10-20 20:48
Is it really necessary to have global scope for REPL to work?
(define wo 'wah)
(display wo)
((lambda (wo)
(display wo))
'cool)
for(int i = 1; i < 10; i++)
{
printf("%d ", i);
}
printf("\n");
((lambda (self i)
(self self i)
(newline))
(lambda (self i)
(if (< i 10)
(begin (display i)
(display " ")
(self self (+ 1 i)))))
1)