string java doc 8 code example
Example: doc string in java
java has it's won function definition as similar as python's doc string
which is called "javadoc" and written before java method using /** */
/** This is doc
* string */
public void DocString() {
// here goes function bodies
}