On 02/04/2014 11:52 PM, Andrej Mitrovic wrote: > D is the tersest language around, just observe how I can make > functions returning functions with ease: > > void main() > { > (() => (){})()(); > } void main(){ (()=>{})()(); }