On Saturday, 14 October 2017 at 07:45:06 UTC, Walter Bright wrote:
On 6/18/2017 3:38 AM, Ecstatic Coder wrote:
Something I really appreciate a lot with D is how close it is
to JavaScript.
There's also a D implementation of Javascript:
https://github.com/DigitalMars/DMDScript
The surprising strength of DMDScript is that it uses the same GC
as D does, making sharing of objects between JS and Host
transparent and 0-copy.
A typical JS engine run internal GC which the host has to
interact with in cumbersome ways b/c it doesn’t know about
hosts’s memory.