We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a2b5b7 + 77b193c commit f3c9422Copy full SHA for f3c9422
.gitignore
@@ -0,0 +1,9 @@
1
+# Ignore Idea file
2
+.idea/
3
+
4
+#Helloworld file
5
+HelloWorld.iml
6
7
+#build files
8
+out/
9
src/Contact.java
@@ -0,0 +1,5 @@
+public class Contact {
+ String name;
+ String email;
+ String phoneNumber;
+}
src/Main.java
@@ -85,10 +85,4 @@ private void delete() {
85
System.out.println("Removed " + c.name);
86
}
87
88
-
89
- class Contact {
90
- String name;
91
- String email;
92
- String phoneNumber;
93
- }
94
0 commit comments