Re: Where do I start?
Neil Jerram <[email protected]>
| Newsgroups | gmane.lisp.guile.gtk |
|---|---|
| Message-ID | <[email protected]> |
"Stephen P. Schaefer" <[email protected]> writes: > I want to build a GUI program in scheme in the Fedora 8 environment, which means > I have guile-gnome-platform-2.15.93. Five pages into the tutorial I attempt > > bash-3.2$ guile-gnome-0 > guile> (make <gboolean> #:value #f) > > Backtrace: > In standard input: > 1: 0* (make <gboolean> #:value #f) > > standard input:1:1: In expression (make <gboolean> #:value ...): > standard input:1:1: Unbound variable: make > ABORT: (unbound-variable) The low-level solution for that is to do (use-modules (oop goops)) before the (make ...). It may be that there is also a higher-level guile-gnome-specific solution, but I don't know. > Where do I go for clue? Here is always good! > What did *you* read to learn this environment? I'm not > afraid of source code, but which 20 files should I read first? I'll have to leave that to Andy and others. Regards, Neil