root/trunk/src/tutorials/examples/dcode_test/dcode_test.d
| Revision 6, 326 bytes (checked in by jcc7, 3 years ago) |
|---|
| Line | |
|---|---|
| 1 | void main() |
| 2 | { |
| 3 | int i; |
| 4 | char[] c; |
| 5 | |
| 6 | /+ |
| 7 | outermost comment |
| 8 | |
| 9 | /+ |
| 10 | inner comment |
| 11 | |
| 12 | /+ |
| 13 | innermost comment |
| 14 | +/ |
| 15 | |
| 16 | +/ |
| 17 | |
| 18 | +/ |
| 19 | |
| 20 | |
| 21 | /* non-nesting block comment */ |
| 22 | |
| 23 | |
| 24 | char[] s = "some string"; |
| 25 | char[] s2 = r"some string"; |
| 26 | char[] t = `some string`; |
| 27 | |
| 28 | return; |
| 29 | } |
Note: See TracBrowser for help on using the browser.
