Tagged Questions

GNU Guile is the GNU project's official plugin infrastructure. Guile typically refers to the Scheme front-end which Guile provides.

learn more… | top users | synonyms

41
votes
13answers
9k views

Lisp Web Frameworks?

What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
10
votes
6answers
2k views

Guile and Emacs?

I'm learning Emacs Lisp and I came across this decade old post saying that at some point Guile (Scheme) will replace Emacs Lisp, or Emacs will be rewritten with Guile. ...
9
votes
1answer
126 views

Scheme: why this result when redefining a predefined operator?

I received an unexpected result when redefining the + operator in a scheme program using guile. I should point out that this occurred while experimenting to try to understand the language; there's no ...
6
votes
2answers
88 views

When to use lambda definition with a “bare” formal parameter?

I'm learning Guile Scheme at the moment, and in the documentation I suddenly ran into the following construction: ((lambda args (display args)) 42) => (42) This threw me for a loop; up until ...
6
votes
1answer
388 views

LilyPond: Extracting pitch names from music

I use LilyPond to create practice scores and etudes. I've figured out how to allow note entry in Moveable Do solfege notation and have a template (see below) that supports displaying the solfege ...
5
votes
2answers
161 views

Saving program image in guile

I've heard that most lisps support saving image of running program into file. Does guile support this?
5
votes
3answers
332 views

Guile Scheme and CGI?

I recently discovered that CGI scripts can be written in pretty much any language that can print to stdout. I've written a small guile cgi script that works on my local apache install, but not on my ...
3
votes
2answers
120 views

controlling evaluation in scheme (guile)

This seems like a simple question; perhaps it is so simple that it is difficult to find a search that will find the answer. In Scheme (specifically, the Guile implementation if that makes any ...
3
votes
3answers
324 views

Lexing and Parsing Utilities

I'm looking for lexical analysis and parser-generating utilities that are not Flex or Bison. Requirements: Parser is specified using a context-free LL(*) or GLR grammar. I would also consider PEGs. ...
3
votes
1answer
390 views

Is it possible to embed Guile in a C++ app on iOS or Android?

Guile looks somewhat straightforward to embed into a C/C++ project, but how does it fare on iOS or Android? Does it require 3rd party libraries that are unavailable for those platforms? How is it as ...
3
votes
2answers
1k views

How to parse out base file name using Script-Fu

Using Gimp 2.6.6 for MAC OS X (under X11) as downloaded from gimp.org. I'm trying to automate a boring manual process with Script-Fu. I needed to parse the image file name to save off various layers ...
2
votes
1answer
225 views

How to check for memory leaks in Guile extension modules?

I develop an extension module for Guile, written in C. This extension module embeds a Python interpreter. Since this extension module invokes the Python interpreter, I need to verify that it ...
2
votes
1answer
183 views

How to build unit tests in Guile, which output to the TAP standard?

I would like to have a Guile script, which implements functions, which output test result messages according to the TAP protocol.
2
votes
3answers
243 views

Guile scheme - quoted period?

What does the following Guile scheme code do? (eq? y '.) (cons x '.) The code is not valid in MzScheme, is there a portable equivalent across scheme implementations? I am trying to port this code ...
1
vote
1answer
60 views

In guile scheme, how can I iterate a list of key-value pairs (i.e. a Hash map)?

I'm playing around with guile to try and get familiar with pure functional programming concepts. Before I can do anything useful with any language, I need to understand some basic data structures and ...
1
vote
1answer
105 views

what's wrong with this define-syntax macro in scheme?

I'm working though SICP and wanted to try out some of the examples in guile. I'm trying the stream examples and wanted an implementation for cons-stream, which I got from this StackOverflow question. ...
1
vote
2answers
194 views

How to inspect/export/serialize a (guile) Scheme environment

I'd like to export or replicate a scheme environment in another guile process. The algorithm I'm imagining would do something like this to serialize: (map (lambda (var val) (display (quasiquote ...
1
vote
1answer
311 views

Issues embedding Guile in C++

I'm a Scheme programmer, and I'm attempting to use Guile to call Scheme functions from C++ code within a Bison specification. The documentation concerning Guile and C is great; however, I haven't ...
1
vote
1answer
217 views

How to create cairo surface in guile

I have this code guile> (cairo-pdf-surface-create "foo.pdf" 100.0 100.0) ; and get this error standard input:29:1: In procedure cairo-pdf-surface-create in expression (cairo-pdf-surface-create ...
1
vote
3answers
455 views

Problem with circular definition in Scheme

I am currently working through SICP using Guile as my primary language for the exercises. I have found a strange behavior while implementing the exercises in chapter 3.5. I have reproduced this ...
1
vote
1answer
113 views

How to run TAP::Harness tests written in Guile?

The usual approach of test: $(PERL) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), '$(INCDIRS)')" $(TEST_FILES) fails to run Guile scripts, because it passes to Guile the extra ...
0
votes
1answer
374 views

How to convert a string into bignum in C code which extends Guile?

In Guile 1.6.*, the function scm_istring2number(char *str,int strlen,int radix) does the work. However, this function does not exist in Guile 1.8.. How can I accomplish the same task in Guile 1.8.? ...