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