Search

3 days ago
DIP Ideas »
...main() {
    Parent parent = new Parent;
    parent.methB("Direct");

    writeln();
    Child child = new Child;
    child.methB...
3 days ago
DIP Ideas »
...import std.stdio;

void main() {
    Child child = new Child;
    child.methB();

    writeln();
    Parent parent = child...
3 days ago
DIP Ideas »
...import std.stdio;

void main() {
    Child child = new Child;
    child.method();

    Parent parent = child;
    parent...
4 days ago
General »
...If only the implicit conversion, then a new form of operator, or special named member...
4 days ago
Learn »
...with the separate =true and =false was new to me.  I've checked isNumeric(), and...
4 days ago
Announce »
...of thing, and it's not exactly new that bugzilla e-mails about any comments...
5 days ago
Announce »
...jump on GitHub and subscribe to the new issue.

I searched for the appropriate text...
5 days ago
Issues »
...sneakemail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |INVALID
            Summary|Wedding Decoration,         |spam...
5 days ago
Learn »
...return null;
}


void main()
{

    shared User alice = new shared User("Alice", 20);
    users ~= alice;

    shared...
5 days ago
Learn »
...41);

    auto threads = [
      new Thread(() { incrementInThread(1); }),
      new Thread(() { incrementInThread(2); }),
      new Thread(() { incrementInThread(3...
1 2 3 4
Next ›   Last »