Search

September 02
Genel »
...Salon",
"Yatak Odası"];

import std.stdio;
void main()
{
  Oda evimde = [evinNeresi[0]: Alan(3, 5...
September 02
General »
...slicing should probably be cut from that main api, Id argue its the hardest to...
September 02
Issues »
...int){}
void argNG(OtherT)(OtherT ot){}

void main()
{
    fun(123, &argOK);
    fun(123, &argNG); // semantically...
September 02
Learn »
...essentially you can do that:
```d
void main()
{
    int[string] test;

    test["hello"] = 42;
    test...
September 02
General »
...struct DontCopyMe
    {
        this(this) { assert(0); }
    }

    void main()
    {
        auto r1 = [DontCopyMe(), DontCopyMe(), DontCopyMe()];
        auto r2...
September 01
DIP Ideas »
...i this;
}

alias sint = S!int;
void main()
{
  sint s1;
  auto s2 = sint(1);
  auto...
September 01
Issues »
...struct S
{
   string toString() { return "S"; }
}

void main()
{
   import std.conv;
   assert(S.init.toString...
September 01
General »
...popka/blob/main/TOUR.md) and [examples](https://github.com/Kapendev/popka/tree/main/examples...
September 01
General »
...2024)
* [Part of My Project](https://github.com/Kapendev/popka/tree/main/source/popka/rl)
September 01
Issues »
...S
{
    int x;
    int foo() => x;
}

void main()
{
    S s = S(1);
    apply!(S.foo...
25 26 27 28 29 30 31 32 33 34 35 36
Next ›   Last »