GNU Guile is the GNU project's official plugin infrastructure. Guile typically refers to the Scheme front-end which Guile provides.
0
votes
1answer
23 views
GNU Guile SCM to char*
I am relative new to FFI and GNU Guile, and I am writing bindings to a library that heavily uses char* variables. Here is code from function, that wraps C function:
static inline char*
...
0
votes
1answer
49 views
how to take apart numbers into integer & fractional part in scheme?
I want a function number->second-pair that accepts a number and returns a pair of integer representing its integer part & fractional part multipled with 1000000.
i.e.:
(number->second-pair ...
34
votes
3answers
5k views
Strange multiplication behavior in Guile Scheme interpreter
I was practicing Scheme in Guile 1.8.8 interpreter on OS X. I noticed something interesting.
Here's expt function which is basically does exponentiation expt(b,n) = b^n :
(define (square x) (* x ...
2
votes
1answer
65 views
What does this scheme error tell me?
There exists an elecomagnetic simulator called meep which provides as a front end in the form of a guile interpreter. The simulator consists of a bunch of scheme macros.
I am trying to figure out ...
0
votes
2answers
65 views
Putting a list in a parameter in scheme
So I am new to using scheme/guile and have an assignment where I must take 2 inputs one a simple variable and another a list. I then add the variable to each number in the list and print it out. I ...
4
votes
1answer
126 views
Scheme - LALR parser generation- input from a string
We are trying to generate (in guile) a parser and a lexer that read characters from a string instead of stdin.
We started modifying the calculator example included in the code at
...
0
votes
1answer
43 views
Is there function like Tcl_LinkVar in guile to link C variable to a guile variable directly?
Tcl_LinkVar can link C variable to Tcl variable directly. When variable in C changes, the Tcl variable changes accordingly. It is very convenient.
Example:
Tcl_LinkVar(interp, "player_x", (char *) ...
6
votes
1answer
782 views
Differences between Guile Scheme and Standard Scheme (in Racket IDE)?
I've got a bunch of "legacy" Guile Scheme code that I want to get running in the Racket Scheme IDE. There appear to be enough differences to make this a non-trivial exercise. (My level of Scheme ...
0
votes
1answer
132 views
How to use module in Guile? `$ guile copy.scm; ERROR: no code for module (gnome-2)`
I learnt basisc about Scheme and want to try Guile.
When copied this sample here the first one and run as a script, an Error occured,
$ guile copy.scm
ERROR: no code for module (gnome-2)
My ...
6
votes
2answers
363 views
Why is tail recursive Collatz conjecture causing stack overflow in Scheme?
I've written Collatz conjecture in Scheme:
(define C
(lambda (n)
(cond
((eq? n 1) 1)
((even? n) (C (/ n 2)))
(else (C (+ (* n 3) 1))))))
This is a tail recursive call, yet I ...
2
votes
1answer
151 views
scheme on guile: let-syntax invalid?
For a functional programming assignment, I am writing a scheme macro that translates scheme code to coffeescript code. I am using guile on Linux Mint 12, and have (use-syntax (ice-9 syncase)) active.
...
1
vote
2answers
231 views
How to check if a symbol is a procedure or not
Im trying to write a macro that checks a list to see if there is a procedure call, but im not quite sure how to go about it. The first thing that comes to my head is to use the procedure? function to ...
3
votes
3answers
137 views
Is it possible to just print the string that was passed into the Scheme macro?
I am working on a language translator in guile scheme, and need to handle the basic case, where you're trying to convert a single word.
(define var 5)
(translate var)
This should return the string ...
8
votes
2answers
292 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 ...
2
votes
1answer
264 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 ...
4
votes
2answers
301 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
1answer
337 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. ...
2
votes
2answers
292 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
553 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 ...
4
votes
3answers
921 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.
...
4
votes
1answer
861 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 ...
6
votes
1answer
572 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
241 views
Saving program image in guile
I've heard that most lisps support saving image of running program into file. Does guile support this?
2
votes
1answer
361 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 ...
9
votes
1answer
200 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 ...
5
votes
3answers
564 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 ...
2
votes
3answers
635 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 ...
14
votes
6answers
3k 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.
...
5
votes
5answers
2k 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 ...
49
votes
16answers
13k views
Lisp Web Frameworks?
What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
0
votes
1answer
414 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.? ...
2
votes
1answer
263 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
234 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.
1
vote
1answer
148 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 ...
3
votes
3answers
307 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 ...