Re: Using in C a function defined in guile

2015-09-06 Thread Vladimir Zhbanov
Mike, thank you! It seems to be the info I searched for. Thanks, Vladimir

Re: Using in C a function defined in guile

2015-09-06 Thread Vladimir Zhbanov
On Sun, Sep 06, 2015 at 06:21:35PM +0200, Arne Babenhauserheide wrote: > Hi Vadimir, > > Am Sonntag, 6. September 2015, 17:10:01 schrieb Vladimir Zhbanov: > > After speaking with a man who doesn't like scheme and wants to make all > > his work in C, I wonder if there is an easy way to make the pro

Re: Using in C a function defined in guile

2015-09-06 Thread Vladimir Zhbanov
On Sun, Sep 06, 2015 at 05:23:38PM +0200, Panicz Maciej Godek wrote: > 2015-09-06 16:10 GMT+02:00 Vladimir Zhbanov : > > > Hi, guilers. > > > > After speaking with a man who doesn't like scheme and wants to make all > > his work in C, I wonder if there is an easy way to make the procedures > > who

Re: Using in C a function defined in guile

2015-09-06 Thread David Kastrup
Vladimir Zhbanov writes: > Hi, guilers. > > After speaking with a man who doesn't like scheme and wants to make all > his work in C, I wonder if there is an easy way to make the procedures > wholly written in Guile available in C, besides any kind of 'eval'. > Looking through the guile info I did

Re: Using in C a function defined in guile

2015-09-06 Thread Arne Babenhauserheide
Am Sonntag, 6. September 2015, 16:09:06 schrieb Mike Gran: > The simplest way to implement such a thing is using > functions like scm_c_eval_string, where one creates a string > containing Guile code and executes it. > … > There is an example in the manual here > http://www.gnu.org/software/guile/m

Re: Using in C a function defined in guile

2015-09-06 Thread Arne Babenhauserheide
Hi Vadimir, Am Sonntag, 6. September 2015, 17:10:01 schrieb Vladimir Zhbanov: > After speaking with a man who doesn't like scheme and wants to make all > his work in C, I wonder if there is an easy way to make the procedures > wholly written in Guile available in C, besides any kind of 'eval'. > L

Re: Using in C a function defined in guile

2015-09-06 Thread Panicz Maciej Godek
2015-09-06 16:10 GMT+02:00 Vladimir Zhbanov : > Hi, guilers. > > After speaking with a man who doesn't like scheme and wants to make all > his work in C, I wonder if there is an easy way to make the procedures > wholly written in Guile available in C, besides any kind of 'eval'. > Looking through

Re: Using in C a function defined in guile

2015-09-06 Thread Taylan Ulrich Bayırlı/Kammer
Vladimir Zhbanov writes: > Hi, guilers. > > After speaking with a man who doesn't like scheme and wants to make all > his work in C, I wonder if there is an easy way to make the procedures > wholly written in Guile available in C, besides any kind of 'eval'. > Looking through the guile info I did