IRC channel logs

2025-03-04.log

back to list of logs

<sneek>Yey! dsmith is back!
<dsmith>sneek, botsnack
<sneek>:)
<dsmith>wingo's latest blog is the gnarliest one yet! (my gnarlcounter overflowed somewhere in the middle)
<__monty__>Can modules have spaces in their names?
<rlb>__monty__: imagined it might be fine (since the names are just symbols), and it appears to, but you'll need (define-module (foo #{bar baz}) ...) ... etc.
<rlb>rather (define-module (foo #{bar baz}#) ...) ...
<__monty__>rlb: (define-module (#{foo bar}# #{baz quux}#)) would go with (use-modules (#{foo bar}# #{baz quux}#)) and be in `foo bar/baz quux.scm`?
<__monty__>Maybe I'm not setting my load-path properly, hmm.
<__monty__>Hmm, the directory containing `foo bar` is on the load-path but I'm still getting "no code for module (#{foo bar}# #{baz quux}#)".