[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Guile and GNU TeXmacs
From: |
Thomas Wawrzinek |
Subject: |
Re: Guile and GNU TeXmacs |
Date: |
Wed, 12 Dec 2001 08:46:37 +0100 (MET) |
Hi!
Joris van der Hoeven <address@hidden> wrote:
> Also, I did not manage to get JACAL working
> properly in combination with Guile, even though I tried a very
> recent version which was claimed to work well.
I tried JACAL with guile 1.5.4. To start it, I fired up guile in the
directory where I unpacked JACAL, then loaded the slib module and started
JACAL as described in its manual:
$ guile
guile> (use-modules (ice-9 slib))
guile> (slib:load "math.scm")
............
JACAL version 1b1, Copyright 1989-2001 Aubrey Jaffer
JACAL comes with ABSOLUTELY NO WARRANTY; for details type `(terms)'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `(terms)' for details.
;;; Type (math) to begin.
guile> (math)
type qed() to return to scheme, type help() for help.
e0 : guile>
However, I got errors when trying to use symbolic variables (e.g. `a+b;').
I had to set JACAL's output grammar representation to "scheme" to get
it working:
e0 : guile> set outgrammar scheme;
e0 : guile> a + b;
(define e0 (+ a b))
e1 : guile>
Presumably, there is something in JACAL's infix grammar interpretation code
or the underlying slib, that isn't compatible with guile?
I didn't investigate this further, because I've not started to do any
serious work with JACAL.
HTH you to get started, in case you were experiencing the same error.
Regards,
Thomas