root/trunk/src/tutorials/examples/t29/test.d

Revision 6, 183 bytes (checked in by jcc7, 3 years ago)

Made more progress in developing convertToWiki and added some files.

Line 
1 /* http://www.dsource.org/forums/viewtopic.php?t=29 */
2
3 // Temp.d
4
5 void main()
6 {
7 int delegate() foo;
8 foo = delegate int() { return 1; };
9 foo = delegate int() { return 2; };
10 }
Note: See TracBrowser for help on using the browser.