11 lines
260 B
Racket
11 lines
260 B
Racket
#lang racket/base
|
|
(require "interfaces.rkt"
|
|
"widget.rkt"
|
|
"keymap.rkt"
|
|
"partition.rkt")
|
|
|
|
(provide (all-from-out "interfaces.rkt")
|
|
(all-from-out "widget.rkt")
|
|
(all-from-out "keymap.rkt")
|
|
identifier=-choices)
|