Re: [racket] strange behaviour of a (match) form

2014-10-01 Thread Yuri Garmay
ll]) > > 'hello-world > > > > On Oct 1, 2014, at 4:52 PM, Yuri Garmay wrote: > > > Hi, all > > > > Accidentally, I found out that null matchs in unexpected way (seems it > matchs always) > > > > So, > > (define (length-my lis

[racket] strange behaviour of a (match) form

2014-10-01 Thread Yuri Garmay
Hi, all Accidentally, I found out that null matchs in unexpected way (seems it matchs always) So, (define (length-my list) (match list ['() 0] [(cons x xs) (+ 1 (length-my xs))] [_ 'not-a-list])) (length-my '(1 2 3 4)) >produces 4 But (define (length-my list) (match

[racket] opengl multisampling troubles

2013-11-06 Thread Yuri Garmay
Hi all! I have opengl multi-sampling not working under linux-64. I have tried set up msaa using gl-config and gl-enable as it desribed in manual, but that failed. After that I checked msaa in c+glut and found it works, then I installed racket win32 under wine and found it works too. So may it be