16 lines
227 B
Text
16 lines
227 B
Text
// a single-line comment
|
|
|
|
/* a multi-line
|
|
comment
|
|
*/
|
|
|
|
/*
|
|
* a multi-line comment
|
|
* with some decorative stars
|
|
*/
|
|
|
|
// comment out a code line
|
|
// println("foo");
|
|
|
|
// comment at the end of a line
|
|
println("foo bar"); // "baz"
|