Inline::Scheme::Guile
use Inline::Scheme::Guile;
my $g = Inline::Scheme::Guile.new();
$g.run_i('(+ 3 5)');
$g.run_s('"foo"');
Module for executing Guile Scheme code and accessing Guile Scheme libraries from Raku.
You will need guile and its headers installed, of course. The Debian packages 'guile-2.0' and 'guile-2.0-dev' contain all the binaries you should need.
Guile itself links with its own libgc library, which is included in guile-2.0, but I'm mentioning this in case it should become necessary to install this separately.
raku configure.pl6
make test
make install
Heavily influenced by Inline::Python. Thanks, Stefan.
Jeffrey Goff [email protected]