This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

silly newbie question


Hello,

I use guile as a scripting language and generate small programs on the
fly
using them similiar to

   echo "..." | myguile

where myguile is clearly guile plus some selfwritten functions. For
debugging
purposes I would like to have a log of every function call.

E.g.
   echo "(+ 1 2)" | myguile

yields

   guile> 3
   guile>

whereas some sort of:

   guile> (+ 1 2)
   3
   ...

would be helpful. If found the function "single-step", but the
documentation
is empty.

regards
Michael