Skip to content

Instantly share code, notes, and snippets.

@deeglaze
Created September 12, 2012 16:33
Show Gist options
  • Save deeglaze/3707924 to your computer and use it in GitHub Desktop.
Save deeglaze/3707924 to your computer and use it in GitHub Desktop.
Problematic define
#lang racket
(define (f x) (cond [#f ;; or some other arbitrary computation that gives #f
(g x)]
[else x]))
(f 0)
(define (g x) x)
;; It is undecidable if there is an unbound identifier.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment