contact
2018-10-28 09:09:10

Hello! Is there a way to parameterize a module instance? The intent is to have procedures in “utils.rkt” to take into account a context represented here by “config.rkt” something like:

utils.rkt
---------
  #lang racket

  (require "config.rkt")
  (require "module.rkt")


  (define parameterized_module (module config))

  (provide parameterized_module)


some_other_module.rkt
---------------------
  #lang racket

  (require "utils.rkt")

  …

contact
2018-10-28 14:41:49

Given a list of paths to executable files, how to make racket launch their execution in parallel?



samth
2018-10-28 16:19:38

As you may have noticed, this channel isn’t used


contact
2018-10-28 16:21:22

Yes… but the IRC channel is apparently not used much… which is?


samth
2018-10-28 16:21:42

In this slack, most action is in #general


samth
2018-10-28 16:21:56

The IRC channel is also active


contact
2018-10-28 16:22:24

Ok! Will try my luck in these channels then, thanks!


samth
2018-10-28 16:23:13

For your question, you want to use system along with threads


contact
2018-10-28 16:25:55

Will try that out, thanks!