Re: [racket-users] hello, where can I find the distribution 6.7.0.3.

2017-01-04 Thread WarGrey Gyoudmon Ju
Hi, Stephen, I've already tried 12.28 and no luck. And at this time, that link is dead. So, all snapshots are temporary testers. hi Dupéron, For me on my computer I always build it from source, but I never trace the date and commit. Actually this is one of the major reason I gave up Haskell,

Re: [racket-users] hello, where can I find the distribution 6.7.0.3.

2017-01-04 Thread Dupéron Georges
I don't think the old "minor" versions are kept, only the last few as Stephen pointed out. As can be checked in the git log for https://github.com/racket/racket/blame/master/pkgs/base/info.rkt, the version number was bumped away from 6.7.0.3 in commit d7b18e7, so you could try checking out

Re: [racket-users] hello, where can I find the distribution 6.7.0.3.

2017-01-04 Thread Stephen De Gabrielle
there is an 'other available snapshots' at the bottom of the snapshots screen e.g. https://www.cs.utah.edu/plt/snapshots/20161228-f039a4c/index.html they have dates but I don't know what snapshot version numbers they correspond to. HTH Stephen On Wed, Jan 4, 2017 at 8:51 AM, WarGrey

[racket-users] hello, where can I find the distribution 6.7.0.3.

2017-01-04 Thread WarGrey Gyoudmon Ju
I cannot deploy my typed desktop application on Windows. In the download home page, 6.7 does not work, and that bug seemed to be solved (I started 6.7 from 6.7.0.3, do not know whether it was okay on macOS). The latest snapshot has a new bug shown both on macOS and Windows: in-list: contract

[racket-users] Hello there!

2016-08-10 Thread Andreas Olsson
I really like Racket although I haven't used it much. It's a shame it isn't more popular, maby a new slogan would make it better. I don't think "A programmable programming language" is very catchy, "Batteries included" might be a better option. I'm planing to make a CAD in Racket, I have done

Re: [racket-users] Hello

2016-04-14 Thread Rustom Mody
On Thu, Apr 14, 2016 at 6:43 PM, Matthias Felleisen wrote: > > On Apr 14, 2016, at 9:06 AM, Rusi Mody wrote: > > > > 2. I am interested in creating environments such as python's numpy, ipython > etc. Is it possible/easy to build on (steal!)

Re: [racket-users] Hello

2016-04-14 Thread Matthias Felleisen
> On Apr 14, 2016, at 9:06 AM, Rusi Mody wrote: > > Used PC-Scheme many years ago... and then guile for a bit... > Pleasant coming back to scheme! > > Some questions: > > 1. I am not able to clearly make out what the different semantics of the > different teachpacks

[racket-users] Hello

2016-04-14 Thread Rusi Mody
Used PC-Scheme many years ago... and then guile for a bit... Pleasant coming back to scheme! Some questions: 1. I am not able to clearly make out what the different semantics of the different teachpacks are. Would like summaries - for an old schemer (myself) - new people I am coaching 2.

Re: [racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-12-01 Thread Alejandro López
El lunes, 30 de noviembre de 2015, 19:02:35 (UTC-5), Matthias Felleisen escribió: > Don't use the old X graphics library. Use > > #lang racket/gui > > instead. -- Matthias > > > > On Nov 30, 2015, at 3:51 PM, Alejandro López wrote: > > > I have this code: > > >

Re: [racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-12-01 Thread Alejandro López
But i need this in the old library :( -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit

[racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-11-30 Thread Alejandro López
I have this code: ;purpose ;Creating play noughts and crosses ;Include graphics library (Require (lib "Graphics.ss" "graphics")) ;Open graphics library (Open-graphics) ;Create window (Define window (open-viewport "three in one" 500 500)) ;background color ((Draw-viewport window) "black")

[racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-11-30 Thread Alejandro López
I have this code: #lang racket ;purpose ;Creating play noughts and crosses ;Include graphics library (require (lib "Graphics.ss" "graphics")) ;Open graphics library (open-graphics) ;Create window (define window (open-viewport "three in one" 500 500)) ;background color ((draw-viewport window)

Re: [racket-users] Hello everybody, i need help again :( sorry but i dont know much of Racket

2015-11-30 Thread Matthias Felleisen
Don't use the old X graphics library. Use #lang racket/gui instead. -- Matthias On Nov 30, 2015, at 3:51 PM, Alejandro López wrote: > I have this code: > > > #lang racket > ;purpose > ;Creating play noughts and crosses > > ;Include graphics library > (require