Skip to content

Instantly share code, notes, and snippets.

@patham9
Created October 30, 2023 17:23
Show Gist options
  • Save patham9/445383b9aecda9e090390a881cab5a75 to your computer and use it in GitHub Desktop.
Save patham9/445383b9aecda9e090390a881cab5a75 to your computer and use it in GitHub Desktop.
racklog
(define %coffee
(%rel ()
[('moka)]
[('turkish)]
[('expresso)]
[('cappuccino)]
[('latte)]))
(define (test data)
(if data
(cons data (test (%more)))
'()))
(test (%which (c) (%coffee c)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment