nalaginrut writes:
> hi all, I got a problem with @.
> It's OK when I export procedure with @:
> ==
> (define aaa (@ (rnrs) make-bytevector))
> ==
>
> but it'd failed if exported a macro.
>
> scheme@(guile-user)> (define aaa (@ (rnrs) unless)
> I don't think so. The second form would be equivalent to (define aaa
> unless) if unless was imported by the module, and this is also an error
> because unless is not an identifier syntax.
>
> If I were you I'd (use-modules (rnrs control)) or (import (rnrs
> control)) instead.
>
Well, thanks!
Heya :)
On Wed 08 Jun 2011 23:05, l...@gnu.org (Ludovic Courtès) writes:
> "Andy Wingo" skribis:
>
>>"Return a new future for THUNK. Execution may start at any point
>> concurrently, or it can start at the time when the returned future is
>> touched."
>> + (create-workers!)
>
> Wouldn't