Re: [racket-users] raco distribute help

2018-02-05 Thread Dmitry Pavlov
Deren, In addition to what Matthew has said, I guess you need to have a 'main' module in your language, and provide it to raco exe, too. It can be a dummy module or not. The requirement of such a module is unclear to me, but it exists. Here is my working script to pack a standalone interpreter

Re: [racket-users] raco distribute help

2018-02-02 Thread Matthew Flatt
At Thu, 1 Feb 2018 12:53:50 -0500, Deren Dohoda wrote: > tl;dr main.rkt has to (dynamic-require user-selected.rkt) and > user-selected.rkt is written in a different #lang and requires a file from > this program. How do I glue these pieces together for raco exe / raco > distribute? You'll need to

[racket-users] raco distribute help

2018-02-01 Thread Deren Dohoda
Hi everyone, I'm having a hard time understanding the docs for raco exe and raco distribute. tl;dr main.rkt has to (dynamic-require user-selected.rkt) and user-selected.rkt is written in a different #lang and requires a file from this program. How do I glue these pieces together for raco exe /