Hi again :)
> ...
> this works fine:
I realized just after I sent that the compile-me script was not the latest
version: no big deal, just this displays exactly what I pasted in the previous
mail
Here it is:
;; compile-me script starts here
#! /bin/sh
# -*- mode: scheme; coding: utf-8 -*-
exec
Hi Andy,
> > This is a big problem for me, so I partially locally reverted that part of
> > the patch, plus, I patch guild so it does this before anything else:
> > (eval-when (expand load eval)
> > (use-modules (oop goops))
> > (default-duplicate-binding-handler
> > '(mer
In 2.1.3.59-516f7, the 'continue' in 'while loop' throw exception. It's
OK in stable-2.0.
code
(define i 0)
(while (< i 20)
(display i)(newline)
(when (= i 11) (continue)) (set! i (1+ i)))
end