On Tuesday, 27 February 2024 at 22:05:48 UTC, Liam McGillivray
wrote:
Looking at the code examples on the Raylib and SFML website,
they look similar in complexity of getting started, but I like
it that the Raylib website has lots of simple demonstration
programs on the website with the code pro
On Wed, Feb 28, 2024 at 03:00:55AM +, Liam McGillivray via
Digitalmars-d-learn wrote:
> In D, it appears that dynamic arrays (at least by default) use a ulong
> as their key type. They are declared like this:
> ```
> string[] dynamicArray;
> ```
>
> I imagine that using a 64-bit value as the
In D, it appears that dynamic arrays (at least by default) use a
ulong as their key type. They are declared like this:
```
string[] dynamicArray;
```
I imagine that using a 64-bit value as the key would be slower
than using 32 bits or 16 bits, and 64 bits is way overkill for
nearly everything.
On Tuesday, 27 February 2024 at 03:43:56 UTC, Liam McGillivray
wrote:
Raylib looks promising. I installed it along with your
Raylib-d. I managed to build the example you provided with dub,
but trying to use it in it's own dub project in a separate
directory isn't working. Just copying and pasti