Re: Unicode procedure names

2019-07-16 Thread Hans Åberg
> On 16 Jul 2019, at 15:18, Arne Babenhauserheide wrote: > > Hans Åberg writes: >> Now, I don't know if this is something you think would be nice to have >> baked into Guile, but I really liked the idea, and thought to share it >> in the case you would, too (and have't thought of i

Re: Unicode procedure names

2019-07-16 Thread Arne Babenhauserheide
Hans Åberg writes: > Now, I don't know if this is something you think would be nice to have > baked into Guile, but I really liked the idea, and thought to share it > in the case you would, too (and have't thought of it yet). :) >>> (define ≥ >=) > I have used such symbols for math

Re: Unicode procedure names

2019-07-16 Thread Hans Åberg
> On 16 Jul 2019, at 14:41, Ricardo Wurmus wrote: > > Arne Babenhauserheide writes: > Now, I don't know if this is something you think would be nice to have baked into Guile, but I really liked the idea, and thought to share it in the case you would, too (and have't thought of

Re: Unicode procedure names

2019-07-16 Thread Ricardo Wurmus
Arne Babenhauserheide writes: >>> Now, I don't know if this is something you think would be nice to have >>> baked into Guile, but I really liked the idea, and thought to share it >>> in the case you would, too (and have't thought of it yet). :) >> >> I think this could be implemented as a libr

Re: Unicode procedure names

2019-07-15 Thread Arne Babenhauserheide
Ricardo Wurmus writes: > Tirifto writes: > >> I was recently looking into Perl 6 and noticed a very neat feature >> about it: Unicode operators! That is, it makes use of some Unicode >> symbols to offer alternatives to awkward or verbose ASCII notation. >> For instance, ‘>=’ and ‘<=’ may just a

Re: Unicode procedure names

2019-07-15 Thread Ricardo Wurmus
Tirifto writes: > I was recently looking into Perl 6 and noticed a very neat feature > about it: Unicode operators! That is, it makes use of some Unicode > symbols to offer alternatives to awkward or verbose ASCII notation. > For instance, ‘>=’ and ‘<=’ may just as well be written as ‘≥’ and >

Unicode procedure names

2019-07-12 Thread Tirifto
Hello all! I was recently looking into Perl 6 and noticed a very neat feature about it: Unicode operators! That is, it makes use of some Unicode symbols to offer alternatives to awkward or verbose ASCII notation. For instance, ‘>=’ and ‘<=’ may just as well be written as ‘≥’ and ‘≤’, respectively.