Just know this.
Thread overview | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
September 19 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote: >... I like foreach. Just look at this SDL event pool implementation:
I love short text blocks, like this:
Nice:
I love structured types, like this:
|
September 19 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote: >Just know this. +1 😍 SDB@79 |
September 20 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tue, Sep 19, 2023 at 04:34:30AM +0000, Vitaliy Fadeev via Digitalmars-d wrote: > Just know this. Me too! One of my favorite parts: // Slow auto myData = iota(1_000_000).array; foreach (data; myData) { doSomething(data); } // Instant speedup: auto myData = iota(1_000_000).array; foreach (data; myData.parallel) { doSomething(data); } D r0x0rs! No, D boulders! :-D T -- Старый друг лучше новых двух. |
September 20 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to H. S. Teoh | On 9/20/2023 4:01 PM, H. S. Teoh wrote:
> D r0x0rs!
>
> No, D boulders! :-D
Love it!
|
September 21 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote:
> Just know this.
One thing that I like about D is... it has the performance of a System/compiled language at at same time supports GC.
I'm not a language expert but coming from C that was very cool.
Matheus.
|
September 21 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to matheus | On Thursday, 21 September 2023 at 01:07:30 UTC, matheus wrote:
> On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote:
>> Just know this.
>
> One thing that I like about D is... it has the performance of a System/compiled language at at same time supports GC.
>
> I'm not a language expert but coming from C that was very cool.
>
> Matheus.
Nice to see some praise to D for a change. We need more people like this
|
September 21 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote: >Just know this. One thing I really love, personally, is how expressive you can get with APIs in D.
Whereas, in D I can write:
(without The specificity that D offers, particularly with |
September 21 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Imperatorn | On Thursday, 21 September 2023 at 16:29:43 UTC, Imperatorn wrote:
> Nice to see some praise to D for a change. We need more people like this
Then you aren't talking to me. The internet culture (right or wrong) promotes criticism over praise.
|
September 24 Re: I love D | ||||
---|---|---|---|---|
| ||||
Posted in reply to Vitaliy Fadeev | On Tuesday, 19 September 2023 at 04:34:30 UTC, Vitaliy Fadeev wrote: >Just know this. I wonder why D isn't more popular. Also we have arsd, so it's an automatic win. |