[racket-users] A language and REPL for SRFI 105 "curly infix"

2021-12-31 Thread damien...@gmail.com
Hi, i adapted a #lang and REPL for SRFI 105: https://github.com/damien-mattei/library-FunctProg/blob/master/racket/SRFI-105.rkt a simple example can be found here: https://github.com/damien-mattei/library-FunctProg/blob/master/racket/examples-curly-infix.rkt The two files must be in the same

[racket-users] Re: Racket Discourse

2021-11-23 Thread damien...@gmail.com
if i create an account following the link at the end of this message , i never get verification email at my google address i specified. On Sunday, November 21, 2021 at 7:09:21 PM UTC+1 johnbclements wrote: > TL;DR: Go to > > https://racket.discourse.group/invites/okLTSrQw1T > > and sign up for

[racket-users] Re: idea for enlighting Scheme syntax

2021-01-02 Thread damien...@gmail.com
{x + 1}) x y) On Saturday, January 2, 2021 at 12:04:35 PM UTC+1 damien...@gmail.com wrote: > hello, > > i made a few macros for scheme syntax improvments. > It uses infix Curly expressions syntax described in SRFI 105 > and could be combined to use with SRFI 47 in

[racket-users] idea for enlighting Scheme syntax

2021-01-02 Thread damien...@gmail.com
hello, i made a few macros for scheme syntax improvments. It uses infix Curly expressions syntax described in SRFI 105 and could be combined to use with SRFI 47 in multi dimensional arrays. Curly expressions allows out of the box syntax more mathematicals like: {c > t} instead of (> c t) my