Re: https://run.dlang.io/ vs All dmd compilers (2.060 - latest)

2022-02-27 Thread Mike Parker via Digitalmars-d-learn
On Monday, 28 February 2022 at 01:51:52 UTC, meta wrote: Is the source of 'run.dlang.io' available somewhere? The link to the github repository is at the top of the run.dlang.io page: https://github.com/dlang-tour/core Issues should be reported there.

Re: https://run.dlang.io/ vs All dmd compilers (2.060 - latest)

2022-02-27 Thread meta via Digitalmars-d-learn
Is the source of 'run.dlang.io' available somewhere?

Set output location for dub --single

2022-02-27 Thread Chris Piker via Digitalmars-d-learn
Hi D Coming from a python background it's worked well to organize my D projects as a dub `sourceLibrary` and then to put top level programs in a directory named `scripts` that are just dub single file projects. So the layout looks like this: ``` rootdir/ | +- mypackage/ || |

https://run.dlang.io/ vs All dmd compilers (2.060 - latest)

2022-02-27 Thread Matheus via Digitalmars-d-learn
Hi, In "https://run.dlang.io; is the "All dmd compilers (2.060 - latest)" not working anymore? Because I always get: "Server error:" I've been trying for like 2 weeks and I always get this "Server Error: " message. I even tried with this basic example: void main(){ import

Re: Simple way to handle rvalues and templates.

2022-02-27 Thread Salih Dincer via Digitalmars-d-learn
On Sunday, 27 February 2022 at 06:11:28 UTC, Ali Çehreli wrote: I don't like the name readFrom() yet but that works. :) It seems very delicious, can stay as read(): ```d auto read(T, Endian E = Endian.bigEndian, R) (R range) { import bop = std.bitmanip; return bop.read!(T,