/*seams that forum does not
like multi
line
comments */
// note the method below shouldn't be commented out...
void someCode(){
int test = 0;
}
/*seams that forum does not
like multi
line
comments */
/**
seams that forum does not
like multi
line
comments
*/
// note the method below shouldn't be commented out...
void someCode() {
int test = 0;
}
/**
seams that forum does not
like multi
line
comments */
Answers
I thought java multi lines should have one asterisk only...
http://docs.oracle.com/javase/specs/jls/se7/html/jls-3.html#jls-3.7
and this /* xxx */ works in the IDE.
I had a code full of it and was a nightmare to post it here...
Indeed,
/*
is a multi-line comment block. W/ 2 asterisks,/**
, is a multi-line documentation block:http://processing.org/reference/multilinecomment.html
http://processing.org/reference/doccomment.html
Seems like the 2nd version works much better in the forum here! :-\"
yep that's how it looks like :)
If those things are to be fixed here, this is a good one...
:P