Compare commits

..

2 Commits

Author SHA1 Message Date
Suzanne Soy
8afaab2988 Changed my name :) 2021-03-04 21:08:45 +00:00
Georges Dupéron
9747adce0f Without the submodule, the occurrence of stx-map is correctly linked. 2016-06-22 19:24:16 +02:00
2 changed files with 4 additions and 5 deletions

View File

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

View File

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