We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ff91f commit dcccc90Copy full SHA for dcccc90
src/main/java/AppArray.java
@@ -0,0 +1,11 @@
1
+import java.util.Arrays;
2
+
3
+public class AppArray {
4
+ public static void main(String[] args) {
5
+ var x=10;
6
+ int testearray[]= {10,30,40};
7
8
+ System.out.println(Arrays.toString(testearray));
9
+ }
10
11
+}
src/main/java/com/example/App.java
@@ -12,6 +12,7 @@ public class App {
12
public static void main(String[] args) {
13
// new App();
14
System.out.println("oi");
15
+ System.out.println();
16
}
17
18
public App(){
0 commit comments