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

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

Made more progress in developing convertToWiki and added some files.

Line 
1 int whatever(int i, int j, int k)
2 {    
3     return 1;
4 }
5
6
7 void main()
8 {
9     int m;
10     int n;
11    
12     n = whatever(n, n, n);       
13 }
Note: See TracBrowser for help on using the browser.