Search

March 01, 2015
LDC »
...math, std.stdio;
void main() {
    writeln(PI);
}

outputs "0" (zero), simply because std.math.PI...
February 28, 2015
Issues »
...writeln(ary.join(" @"));
        // In 2.067b2, this outputs "aa @bb @cc" or asserts inside of...
February 27, 2015
General »
...know to ensure everything is safe? The function has inputs and outputs, sources and destinations.
February 26, 2015
Learn »
...T[]                    _inputs;
>      T[][layersNum - 2]    _hidden;
>      T[]                    _outputs;
>      T[]                    _target;
>
>      //waights [col][row][dimension]
>      T...
February 26, 2015
Learn »
...T[]					_inputs;
	T[][layersNum - 2]	_hidden;
	T[]					_outputs;
	T[]					_target;

	//waights [col][row][dimension]
	T...
February 21, 2015
Learn »
...poly = map;
    list.poly!(a => a + a);
}
---

outputs:

"Error: no property 'poly' for type 'int[]'"
February 16, 2015
Learn »
...stringof, yougonna);
writeln(youreallygonna.stringof, youreallygonna);
---

which outputs:

---
yougonna["eat apple", "eat banana", "eat orange...
February 10, 2015
Issues »
...pragma (msg, Elem!T);
}


/*
dmd git-HEAD outputs this:

source/app.d(11): Error: dereference...
February 09, 2015
General »
...bbb", "ccc" ]);
	pragma(msg, typeof(s));
}
```

It outputs "string" which stands for immutable buffer. However...
February 03, 2015
Learn »
...n", bytesRead, count);
        fclose(f);
        return 0;
    }

Outputs for example this: read 838 bytes, 829...
61 62 63 64 65 66 67 68 69 70 71 72
Next ›   Last »