Origins of the D Programming Language
Dmitry Olshansky
dmitry.olsh at gmail.com
Fri Dec 7 10:08:04 UTC 2018
On Friday, 30 November 2018 at 19:34:58 UTC, Andrei Alexandrescu
wrote:
> Over the past few months, Walter, Mike, and myself have been
> working on a draft submission for the HOPL 2020 conference
> (History of Programming Languages).
>
> The submission proceeds in several stages. Currently we've been
> through one round of preliminary review. Here is the current
> draft:
>
> http://erdani.com/hopl2020-draft.pdf
>
> We'd appreciate feedback and additional historical details.
Maybe already pointed out in the thread but just in case
line 449 has bogus factorial implementation:
foreach (i; 0 .. n) result *= i;
should probably be
foreach (i; 1 .. n) result *= i;
>
>
> Thanks,
>
> Andrei (on behalf of Walter and Mike as well)
More information about the Digitalmars-d
mailing list