blob: c9d12a6e4839e9b32f7202f77d13dc386efb5f72 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#stuff
# "string in a hash comment"
# /* comment in a hash comment */
1 /* c */ + 2
"String /* with partial comment"
"String /* with full comment */"
1 /* Comment with partial "string */ + 2
2 /* Comment with full "string" */ + 3
3 /* Comment with a # hash comment */ + 4
"String with a # hash comment"
1 + \
2
i = 4
read()
i *= 5
if (1 < 3) 1
|