Re: [racket-dev] wishes

2011-05-06 Thread Eli Barzilay
Three minutes ago, Kevin Tew wrote: > racket -tm some_module.rkt runs the main function in some_module.rkt. > with the command-line arguments (A trickiness with that is the fact that `main' should receive command line arguments so composing multiple `main's is not straightforward.) > Welcome t

Re: [racket-dev] wishes

2011-05-06 Thread Eli Barzilay
Three minutes ago, Vincent St-Amour wrote: > At Fri, 6 May 2011 11:22:48 -0400, > Matthias Felleisen wrote: > > 1. Python seems to provide the following unit testing > >functionality: > > > >if a file/module is run as 'main', the test suites are run; if > >it is required into some othe

Re: [racket-dev] wishes

2011-05-06 Thread Kevin Tew
On 05/06/2011 09:44 AM, Vincent St-Amour wrote: At Fri, 6 May 2011 11:22:48 -0400, Matthias Felleisen wrote: 1. Python seems to provide the following unit testing functionality: if a file/module is run as 'main', the test suites are run; if it is required into some other file, the tests

Re: [racket-dev] wishes

2011-05-06 Thread Vincent St-Amour
At Fri, 6 May 2011 11:22:48 -0400, Matthias Felleisen wrote: > 1. Python seems to provide the following unit testing functionality: > >if a file/module is run as 'main', the test suites are run; >if it is required into some other file, the tests aren't run. > >It looks truly convenie

[racket-dev] wishes

2011-05-06 Thread Matthias Felleisen
During my experiments last week, I came up with two more wishes for Racket: 1. Python seems to provide the following unit testing functionality: if a file/module is run as 'main', the test suites are run; if it is required into some other file, the tests aren't run. It looks truly con