Thread overview
GNU Guile D language interop
Apr 08, 2017
new2d
Apr 08, 2017
bachmeier
Apr 10, 2017
new2d
Apr 11, 2017
bachmeier
April 08, 2017
Can someone experienced in D port the GNU Guile embedding tutorial over?

It would be great if Guile can be used to embed in D

Thank you

https://www.gnu.org/software/guile/docs/guile-tut/tutorial.html#Fundamentals
April 08, 2017
On Saturday, 8 April 2017 at 21:29:58 UTC, new2d wrote:
> Can someone experienced in D port the GNU Guile embedding tutorial over?
>
> It would be great if Guile can be used to embed in D
>
> Thank you
>
> https://www.gnu.org/software/guile/docs/guile-tut/tutorial.html#Fundamentals

I have embedded Guile inside a D program. I don't know if I still have the code, and it's been a while since I did it. It was straightforward as I recall.
April 10, 2017
Think you can share the code?
April 11, 2017
On Monday, 10 April 2017 at 05:15:50 UTC, new2d wrote:
> Think you can share the code?

I cannot find it at the moment. If I come upon it, I will post a link here. I remember now that Guile is less friendly than other Schemes, so I created a C library to handle the data passing between Guile and D. That is not a perfect solution so I changed to Gambit instead.