Search

October 28
Learn »
...requests arrive, Unit sends them to the main thread for handling on vibe.d's...
October 26
Issues »
...S) { printf("opMove(ref S)\n"); }
  }

  void main() {
    S s;
    S t;

    S test() { S...
October 26
DIP Ideas »
...i) {2.write;}
    }
  }
}

void main()
{
  ubyte arg;
  S.foo(arg); // prints 1...
October 26
DIP Ideas »
...struct Vector3i { uint x, y, z; }

void main()
{
  //Vector3i vector = {z: 3, x: 1, y...
October 25
Issues »
...disabled opAssign or not.

This code

---
void main()
{
    import std.traits;

    static struct S
    {
        void...
October 25
Issues »
...completely ignore those functions. E.G.

---
void main()
{
    import std.traits;

    static struct S
    {
        int...
October 24
Learn »
...is a separate program with its own main function: https://github.com/andrey-zherikov/argparse...
October 24
Issues »
...19 ldc2      0x0000566b8bc75ced _d_run_main + 141
20 ldc2      0x0000566b8bab81c8 main + 680
21 libc.so...
October 24
Issues »
...T = int)(T v = T.init)
{
}

void main()
{
    foo!int(); // ok
    foo!int("x"); // fail...
October 24
Genel »
...gerekecek. Ben sadece başlangıcı veriyorum...

```d
void main()
{
  Animal[] animals;
  with(Animal) animals = [dog, cow...
7 8 9 10 11 12 13 14 15 16 17 18
Next ›   Last »