Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

infinite loop or stack overflow (See related posts)

// description of your code here

   1  
   2  (define (x x) (x x))
   3  
   4  (x x)
   5  
   6  ;; Or
   7  
   8  ((lambda (x) (x x)) (lambda (x) (x x)))

Comments on this post

whitetiger posts on Oct 05, 2006 at 20:42
Omega... ^_^

You need to create an account or log in to post comments to this site.


Click here to browse all 5545 code snippets

Related Posts