Skip to content

Instantly share code, notes, and snippets.

@shirok
Created August 10, 2016 11:44
Show Gist options
  • Save shirok/e833598bb7bcba305927406a7ae6dc75 to your computer and use it in GitHub Desktop.
Save shirok/e833598bb7bcba305927406a7ae6dc75 to your computer and use it in GitHub Desktop.
(define-module foo
(export <foo> foo-a foo-b)
(define-class <foo> ()
((#0=#:a :init-keyword :a)
(#1=#:b :init-keyword :b)))
(define (foo-a x) (~ x '#0#))
(define (foo-b x) (~ x '#1#)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment