OLD | NEW |
1 # This is a comment | 1 # This is a comment |
2 | 2 |
3 /* So is this */ | 3 /* So is this */ |
4 | 4 |
| 5 // and so is this |
| 6 |
5 .byte 0 /* at end of line? */ | 7 .byte 0 /* at end of line? */ |
6 | 8 |
7 .byte 0 /* at end of line, | 9 .byte 0 /* at end of line, |
8 multi-line? */ | 10 multi-line? */ |
9 | 11 |
10 /* start of line? */ .byte 0 | 12 /* start of line? */ .byte 0 |
11 | 13 |
12 /* What about | 14 /* What about |
13 a multi-line | 15 a multi-line |
14 comment? -- at start of line? | 16 comment? -- at start of line? |
15 */ .byte 0 | 17 */ .byte 0 |
16 | 18 |
17 .byte 0, /* in middle? */ 1 | 19 .byte 0, /* in middle? */ 1 |
18 | 20 |
19 # Illegal; 1 seen on next line | 21 # Illegal; 1 seen on next line |
20 #.byte 0, /* in middle, | 22 #.byte 0, /* in middle, |
21 #spanning lines? */ 1 | 23 #spanning lines? */ 1 |
22 | 24 |
23 /* EOF in comment? | 25 /* EOF in comment? |
OLD | NEW |