Re: [racket] [ANN] IUP Bindings

2010-09-29 Thread Thomas Chust
2010/9/30 Jon Rafkind : > Does IUP use MVC (model-view-control) ? It didn't look like it from their > API overview. > [...] Hello, it doesn't, which may be somewhat less clean but makes the API a lot easier to bind and somewhat easier to use for simple cases ;-) I just don't know that many cross

Re: [racket] [ANN] IUP Bindings

2010-09-29 Thread Jon Rafkind
Does IUP use MVC (model-view-control) ? It didn't look like it from their API overview. On 09/29/2010 03:32 PM, Thomas Chust wrote: Hello, in case anybody else finds this useful: I have created fairly full-featured bindings for the IUP graphical user interface library [1] that work identicall

Re: [racket] Scribble + dynamically entering a file

2010-09-29 Thread Ishaan Singh
Thank you guys! I brought the modfile.rkt out to the directory where I am writing the scrbl files and imported it as shown in one of the other scriblings (reader-extractor I think), worked like a charm! Cheers! (I know I'm probably doing something stupid by bringing files out from /usr/plt/... but

[racket] [ANN] IUP Bindings

2010-09-29 Thread Thomas Chust
Hello, in case anybody else finds this useful: I have created fairly full-featured bindings for the IUP graphical user interface library [1] that work identically (to the maximum possible extent) under the Racket [2] and CHICKEN [3] Scheme systems. You can find the documentation and the version c

Re: [racket] PLaneT License

2010-09-29 Thread Jay McCarthy
The authors of packages decide. Some packages contain their own license files. Jay On Wed, Sep 29, 2010 at 12:40 PM, Karl Heinrichmeyer wrote: >  Hi everybody. > > I'm new to Racket and really impressed with the features and simplicity the > language offers. I already found the license notes of

[racket] PLaneT License

2010-09-29 Thread Karl Heinrichmeyer
Hi everybody. I'm new to Racket and really impressed with the features and simplicity the language offers. I already found the license notes of the racket distribution (that wasn't really hard :) ) but i wondered what the license for the PLaneT repository is. I searched the documentation but

Re: [racket] empty in patterns

2010-09-29 Thread Eli Barzilay
30 minutes ago, Sam Tobin-Hochstadt wrote: > > [...] all `match' special forms come after a paren, [...] Except for `_' and `...' and a few others, wink wink, nudge nudge, `define-match-id-expander', know what I mean, say no more, say no more... -- ((lambda (x) (x x)) (lambda (x) (x x

Re: [racket] empty in patterns

2010-09-29 Thread Sam Tobin-Hochstadt
On Wed, Sep 29, 2010 at 8:14 AM, Shriram Krishnamurthi wrote: > Is it correct that one can write (cons a d) in a pattern, but not empty?   > Thus, > > (define (insert-many ns s) >  (match ns >    [(? empty?) s] >    [(cons a d) (insert a >                        (insert-many d s))])) > > works bu

Re: [racket] Scribble + dynamically entering a file

2010-09-29 Thread Matthias Felleisen
On Sep 29, 2010, at 7:24 AM, Matthew Flatt wrote: > At Wed, 29 Sep 2010 14:40:17 +0530, Ishaan Singh wrote: >> I'm new here, but went through the documentation and couldn't find an answer >> to this so was wondering: >> If I want to write a scribble file and somehow 'include' a text file by just

[racket] empty in patterns

2010-09-29 Thread Shriram Krishnamurthi
Is it correct that one can write (cons a d) in a pattern, but not empty? Thus, (define (insert-many ns s) (match ns [(? empty?) s] [(cons a d) (insert a (insert-many d s))])) works but (define (insert-many ns s) (match ns [empty s] [(cons a d) (insert

Re: [racket] Scribble + dynamically entering a file

2010-09-29 Thread Matthew Flatt
At Wed, 29 Sep 2010 14:40:17 +0530, Ishaan Singh wrote: > I'm new here, but went through the documentation and couldn't find an answer > to this so was wondering: > If I want to write a scribble file and somehow 'include' a text file by just > referencing the name of that text file, is it possible?

[racket] Scribble + dynamically entering a file

2010-09-29 Thread Ishaan Singh
Hi everyone, I'm new here, but went through the documentation and couldn't find an answer to this so was wondering: If I want to write a scribble file and somehow 'include' a text file by just referencing the name of that text file, is it possible? I want to do this to set up an example and add sch