guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: New command line option --use-srfi


From: Marius Vollmer
Subject: Re: New command line option --use-srfi
Date: 15 May 2001 23:43:21 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.102

Rob Browning <address@hidden> writes:

>   $ guile -x "(use-modules (foo bar))" \
>           -x "(use-modules (baz bax))" \
>           -x '(display "Welcome to Guile.\n")' \
>           -x "(run-repl)"
>   Welcome to Guile.
>   guile>

How is this different from

    $ guile -c "(begin  
                  (use-modules (foo bar) (baz bax))
                  (display \"Welcome to Guile.\\n\")
                  (load-user-init)
                  (top-repl))"
    Welcome to Guile.
    guile>

Nevertheless, adding the `-x' option sounds like a good idea.  It
shouldn't hurt if there is more than one way to do it.  We should in
any case clarify what module is the current one when code from the
command line is executed.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]