root/trunk/src/tutorials/examples/ng/else_version/else_version.d

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

Made more progress in developing convertToWiki and added some files.

Line 
1 int main() {
2     if (true) {
3         printf("tautology is neat");
4     }
5     else {
6         version (None) {
7             printf("But paradox makes for a better screenplay");
8         }   
9     }
10     return 0;
11 }
Note: See TracBrowser for help on using the browser.