Okay, so "edit the file" is the answer. That works for me. Thanks!
On Sat, Apr 18, 2020 at 2:30 PM Michael MacLeod
wrote:
> You can parameterize `current-command-line-arguments` like so:
>
> ```
> #lang racket
>
> (require racket/cmdline)
>
> (define foo (make-parameter 7))
>
> (parameterize (
You can parameterize `current-command-line-arguments` like so:
```
#lang racket
(require racket/cmdline)
(define foo (make-parameter 7))
(parameterize ([current-command-line-arguments #("--thing" "9")])
(command-line
#:program "foo"
#:once-each
[("--thing") thing "The thing" (foo thi
Is there a way to specify command line arguments when running inside
DrRacket?
For example:
#lang racket
(define foo (make-parameter 7))
(command-line
#:program "foo"
#:once-each
[("--thing") thing "The thing" (foo thing)]
)
(displayln (foo))
If running in DrRacket, how can I make this spit
3 matches
Mail list logo