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
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
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
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
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
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
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
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
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
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
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?
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
12 matches
Mail list logo