Re: [racket-users] Cycle in loading. Units, (sub)modules, files...

2016-01-08 Thread Jonas Winje
in a single file > that will be required by both "a.rkt" and "b.rkt". In my experience, this > strategy is fairly common in uses of units in the Racket codebase (for > example see https://github.com/racket/games/blob/master/gobblet/sig.rkt). > > Dan > > On We

[racket-users] Cycle in loading. Units, (sub)modules, files...

2016-01-06 Thread Jonas Winje
Hello people, I've been fumbling around with cyclic dependencies and such and have started looking at signatures and units. I manage to make the cycles work out in a couple different ways, but I'm running into trouble when I try to put different parts in different files the way I want them. As