root/trunk/src/tutorials/examples/D_23629/notational_error.d

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

Made more progress in developing convertToWiki and added some files.

Line 
1 /* http://www.digitalmars.com/drn-bin/wwwnews?D/23629 */
2
3 void main()
4 {
5   char[4] foo= "1234";
6   char[]  bar;
7
8   bar.length= 5;
9   bar[0..2]= foo[1.3];
10   printf("%.*s\n", bar);
11 }
Note: See TracBrowser for help on using the browser.