On Friday, May 16, 2025 1:19:41 PM Mountain Daylight Time H. S. Teoh via
Digitalmars-d-learn wrote:
> On Fri, May 16, 2025 at 07:04:24PM +, WhatMeWorry via Digitalmars-d-learn
> wrote:
> [...]
> > void main()
> > {
> > ubyte a;
> > a = a + 5; // onlineapp.d(11): Error: cannot implicit
On Saturday, 17 May 2025 at 07:20:06 UTC, drug007 wrote:
On 17.05.2025 01:26, Danny Arends wrote:
[...]
This patch fixed the issue:
```bash
root@1be5cfa937c3:/DImGui# git diff
diff --git a/src/math/lsystem.d b/src/math/lsystem.d
index 394e902..02c085d 100644
--- a/src/math/lsystem.d
+++ b/src/
On 17.05.2025 01:26, Danny Arends wrote:
Never seen it being a problem, but changing line 94 of lsystem.d from
```
test.rules[Symbols.Origin] ~= Rule("W.O", 5);
```
To
```
test.rules[Symbols.Origin] = Rule("W.O", 5);
```
Would fix it, I guess appending might not be allowed when the key