Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.29 KB | None | 0 0
  1. (define-syntax my-if
  2.   (syntax-rules ()
  3.     ((_ condition then_action else_action) (begin (let ((a (delay then_action))
  4.                                                         (b (delay else_action)))
  5.                                                     (or (and condition (force a)) (force b)))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement