spdegabrielle
2020-8-25 09:47:08

Using #lang racket brings in a lot of stuff you don’t need

Try replacing #lang racket with #lang racket/base (require 2htdp/universe ...) @wanpeebaw Using using require to add the missing libraries.

I’m not going to lie - racket will produce large executables - but there are strategies to mitigate this (maybe ask or #general as this isn’t specific to DrRacket)


sorawee
2020-8-25 23:23:03

@spdegabrielle The above problem is fixed in the snapshot. See https://racket.slack.com/archives/C06V96CKX/p1598382023166100?thread_ts=1598378159.158000&cid=C06V96CKX for more details.


spdegabrielle
2020-8-25 23:50:45

@sorawee thank you!