forked from natural/java2python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComments1.java
More file actions
26 lines (20 loc) · 597 Bytes
/
Comments1.java
File metadata and controls
26 lines (20 loc) · 597 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
multiline comment above the Comments class.
**/
// single line comment above the Comments class.
class Comments1 {
/** multi above other method **/
// single above other method
public static void other() { int j = 1;}
/** multi above main method **/
// single above main method
public static void main(String[] args) {
/** multi inside the main method
**/
// single line comment inside the main method
int /** expr 1 **/ i = /** expr 2 **/ 1 /** expr 3 **/; /** expr 4 **/ // expr 5
// skeaky 1
} // skeaky 2
// skeaky 3
} // skeaky 4
// skeaky 5