Compare commits

..

1 Commits

Author SHA1 Message Date
Suzanne Soy
1e72acf4e6 Changed my name :) 2021-03-04 21:08:23 +00:00
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
#lang racket/base #lang racket/base
(require "other.rkt") (require (submod "other.rkt" m))
(provide (all-from-out "other.rkt")) (provide (all-from-out (submod "other.rkt" m)))

View File

@ -1,4 +1,5 @@
#lang racket/base #lang racket/base
(require syntax/stx) (module m racket/base
(provide (all-from-out syntax/stx)) (require syntax/stx)
(provide (all-from-out syntax/stx)))