guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: examples addon and new hacker for guile


From: Mark H Weaver
Subject: Re: examples addon and new hacker for guile
Date: Sat, 05 Oct 2013 12:28:34 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux)

Hi Johan,

Johan Ceuppens <address@hidden> writes:

> I wonder if you would want an example in the repo with the following
> actor syntax :
>
> ;; start code
> (define (make-table)
>   (let ((dict (make-dictionary)))
>     (define (add! key color)
>       (dictionary-add! dict key color))
>     (define (set! key color)
>       (dictionary-set! dict key color))
>     (lambda (msg)
>       (cond ((eq? msg 'add!) add!)
>             ((eq? msg 'set!) set!)
>             (else (dict msg))))
>     )) ;; end code

Where are 'make-dictionary', 'dictionary-add!', and 'dictionary-set!'
defined?  Anyway, we already have a similar example in the manual:

  http://www.gnu.org/software/guile/manual/html_node/OO-Closure.html

> Then I am going to try to contribute in the near future, I guess I need to
> read up on things.

Glad to hear it!  We can certainly use more help :)

> How do I get co-author status on the project's working repository ?

We generally start out by asking new contributors to post their proposed
patches to guile-devel or bug-guile for review, preferably in the format
produced by git-format-patch.  We push them when they're ready, with the
new contributor listed as author of course.  We grant commit access to
regular contributors after we've gained some confidence in their
abilities and their knowledge of Guile.

Please don't hesitate to ask any questions you might have, either here
or on IRC: #guile on irc.freenode.net.

Thanks for your interest, and welcome to our community!

    Regards,
      Mark



reply via email to

[Prev in Thread] Current Thread [Next in Thread]