[Gimp-developer] script-fu-scheme: Full implementation of Scheme?

2002-10-30 Thread Martin Bernreuther
Hello, the tutorials I found cover a small portion of the Scheme language. Often there's not even a conditional call (if) or loop like (while) explained (but they are nice introductions!). At http://www.swiss.ai.mit.edu/projects/scheme/documentation/scheme.html there's a reference manual, but I

Re: [Gimp-developer] script-fu-scheme: Full implementation of Scheme?

2002-10-30 Thread Nathan Carl Summers
On Wed, 30 Oct 2002, Martin Bernreuther wrote: At http://www.swiss.ai.mit.edu/projects/scheme/documentation/scheme.html there's a reference manual, but I didn't manage to get some functions... to work. How about e.g. the (do) statement or (floor -4.3) (round -4.3) at

Re: [Gimp-developer] script-fu-scheme: Full implementation of Scheme?

2002-10-30 Thread Kevin Myers
Message - From: Nathan Carl Summers [EMAIL PROTECTED] To: Martin Bernreuther [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 4:32 PM Subject: Re: [Gimp-developer] script-fu-scheme: Full implementation of Scheme? On Wed, 30 Oct 2002, Martin Bernreuther wrote: At http

Re: [Gimp-developer] script-fu-scheme: Full implementation of Scheme?

2002-10-30 Thread Nathan Carl Summers
On Wed, 30 Oct 2002, Kevin Myers wrote: However, not all of SIOD is implemented in the GIMP. Specifically, all of the stuff that requires a platform specific implementation is missing. These functions were marked with a U in the old Indiana doc. I don't know if that's true on the newer

Re: [Gimp-developer] script-fu-scheme: Full implementation of Scheme?

2002-10-30 Thread Jeff Trefftzs
I've posted the siod documentation that I use on my website at http://trefftzs.topcities.com/siod.html It also shows functions that are not available in the Gimp, but fewer than your source. I seem to remember that I had to roll my own floor, ceil, and round functions. Good luck. --