Coding just likes Art
This is the blog about the coding, the whole coding and nothing but the coding , so God would help me become a better developer.

Using Scheme For Church Encoding

1 Boolean & Logic

;; Boolean & Logic
(define (TRUE x y) x)

(define (FALSE x y) y)

(define (IF e then else)
  (e then else))

(list (IF TRUE "true" "false")
      (IF FALSE "true" "false"))