On 2/2/14, Brian Schott <briancschott at gmail.com> wrote:
> We all know how nice well-written idiomatic D code looks, but I
> think it's time that we try to really explore the full power of
> the language.
D is the tersest language around, just observe how I can make
functions returning functions with ease:
void main()
{
(() => (){})()();
}