[ create a new paste ] login | about

Link: http://codepad.org/8DOhaOBO    [ raw code | output | fork ]

Scheme, pasted on Mar 27:
1
2
3
4
5
6
7
((lambda (f) 
   (f f 10)) 
 (lambda (f n) 
   (cond 
    ((< 0 n) 
     (print "hello") 
     (f f (- n 1))))))


Output:
1
"hello""hello""hello""hello""hello""hello""hello""hello""hello""hello"


Create a new paste based on this one


Comments: