Rand Stats

The uploading author of github:raku-community-modules does not match the META author of github:drforr.

Inline::Scheme::Guile

github:raku-community-modules

TITLE

Inline::Scheme::Guile

SYNOPSIS

    use Inline::Scheme::Guile;
    my $g = Inline::Scheme::Guile.new();
    $g.run_i('(+ 3 5)');
    $g.run_s('"foo"');

DESCRIPTION

Module for executing Guile Scheme code and accessing Guile Scheme libraries from Raku.

BUILDING

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

ACKNOWLEDGEMENTS

Heavily influenced by Inline::Python. Thanks, Stefan.

AUTHOR

Jeffrey Goff drforr@pobox.com