myTestRig.addOnDestroy(delegate void(Widget w) { quitApp(); } );
became:
myTestRig.addOnDestroy(delegate void(_) { quitApp(); } );
I was trying to find some further documentation on this, but I'm
coming up empty.
Questions:1) What is this called (substituting an underscore in this manner)?
2) Where can a learn more about it?
