diff --git a/main.rkt b/main.rkt index f9afb82..736dda0 100644 --- a/main.rkt +++ b/main.rkt @@ -1,4 +1,4 @@ #lang racket/base -(require (submod "other.rkt" m)) -(provide (all-from-out (submod "other.rkt" m))) \ No newline at end of file +(require "other.rkt") +(provide (all-from-out "other.rkt")) \ No newline at end of file diff --git a/other.rkt b/other.rkt index de1df79..6db0a3e 100644 --- a/other.rkt +++ b/other.rkt @@ -1,5 +1,4 @@ #lang racket/base -(module m racket/base - (require syntax/stx) - (provide (all-from-out syntax/stx))) \ No newline at end of file +(require syntax/stx) +(provide (all-from-out syntax/stx)) \ No newline at end of file