Search

October 13
Issues »
...that this code no longer compiles:

void main()
{
    static struct E
    {
        int value;
        int valid...
October 13
Issues »
...that I came up with is

---
void main()
{
    static struct E
    {
        int value;
        int valid...
October 13
General »
...writeln("copied"); }
}

void foo(S s){}

void main(){
    S s=2; // ok, actually does `S...
October 12
Learn »
...Object was deleted!");
  }
}

import std.stdio;
void main() {
   write("call ");
   writeln("return ", loop);
}

auto loop...
October 12
Genel »
...oluyor neler :)

```d
import std.stdio;

void main()
{
   int[64] dizi = [ 15: 2, 31: 4...
October 12
Learn »
...in the future it might to have main executable and dedicated server, this should be...
October 12
General »
...pointers, it is equivalent to:

```d
void main() {
    auto a = 0;
    auto b = 0;
    const...
October 11
Learn »
...that act like main for each program which aren't actually called main but instead...
October 12
Learn »
...a project that will consist of several main files. I want to write several simple...
October 11
General »
...use ref variables aswell as

```d
void main() {
    auto a = 0;
    auto b = 0;
    const...
12 13 14 15 16 17 18 19 20 21 22 23
Next ›   Last »