Is there an easy way to load a submodule in the current racket file in emacs?
For example, if I have the following file
#lang racket (define (foo x) x) (module+ sub (define (bar xy) x))
and I hit f5 in racket mode to run repl, then foo is available, but bar not.
source share