Re: [racket-users] [racket users] %app question

2020-08-14 Thread Kevin Forchione
> On Aug 13, 2020, at 1:05 PM, Jens Axel Søgaard wrote: > > Den tor. 13. aug. 2020 kl. 21.55 skrev Kevin Forchione >: > Hi guys, > > In Bracket [1] used your idea to produce s-expression, if the first argument > of #%app isn't a function: > > ; In the BRACKET langua

Re: [racket-users] [racket users] %app question

2020-08-13 Thread Jens Axel Søgaard
Den tor. 13. aug. 2020 kl. 21.55 skrev Kevin Forchione : > Hi guys, > > Pollen makes use of something like this: > > (require syntax/parse/define) > > (define-simple-macro (#%top . x) 'x) > > > and it comes in handy in some of my projects. But I’m wondering if there’s > an equivalent for redirecti

[racket-users] [racket users] %app question

2020-08-13 Thread Kevin Forchione
Hi guys, Pollen makes use of something like this: (require syntax/parse/define) (define-simple-macro (#%top . x) 'x) and it comes in handy in some of my projects. But I’m wondering if there’s an equivalent for redirecting an application that hasn’t been defined? In other words, if foo is no