Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LeifAndersen/692f3d27095bd9b78052cf76fc4537f7 to your computer and use it in GitHub Desktop.
Save LeifAndersen/692f3d27095bd9b78052cf76fc4537f7 to your computer and use it in GitHub Desktop.
#lang scratch
(define (Alpha% %)
(class %
(super-new)
(init callback)))
(define A%
(class (Alpha% (Alpha% object%))
(super-new)))
(define x (new A%
[callback (λ (x) 5)]
[callback (λ (x) 6)]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment