mirror of
https://github.com/sjsdfg/effective-java-3rd-chinese.git
synced 2025-02-14 05:20:13 +08:00
20 lines
367 B
Plaintext
20 lines
367 B
Plaintext
|
% foobar
|
||
|
%{}%
|
||
|
%{ foo
|
||
|
bar }%
|
||
|
% 'test'
|
||
|
%{ 'test' }%
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["comment", "% foobar"],
|
||
|
["comment", "%{}%"],
|
||
|
["comment", "%{ foo\r\nbar }%"],
|
||
|
["comment", "% 'test'"],
|
||
|
["comment", "%{ 'test' }%"]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for single-line and multi-line comments.
|