You know on code for web pages and script, you often see something like this
Well.. Is it possible to do this with Java?Code:*/My comment about the script/*
Thanks
Printable View
You know on code for web pages and script, you often see something like this
Well.. Is it possible to do this with Java?Code:*/My comment about the script/*
Thanks
yes
// works
Or the multi line comments of
/* comments */
you can use // for single line comments as such
// this is a comment
or for multilines, use /* */ as such:
/*
My program is awesome!!!!
*/