Skip to content

Commit c176931

Browse files
authored
Add files via upload
1 parent 3e01c2a commit c176931

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: StaticImport.java

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import static java.lang.System.*;
2+
3+
/**
4+
* StaticImport
5+
*/
6+
class StaticImport {
7+
public static void main(String[] args) {
8+
// We don't need to use 'System.out'
9+
// as imported using static.
10+
out.println("Static Import");
11+
}
12+
13+
}

0 commit comments

Comments
 (0)