Leon hace 6 años
padre
commit
4ba0c50530

+ 1
- 0
README.md Ver fichero

@@ -20,6 +20,7 @@
20 20
     * Complete each of the method stubs in the `main` classes provided.
21 21
         * `main` classes are located in `src.main.java.com.zipcodewilmington.danny_do_better_exercises`
22 22
     * There are comments above each method stub to describe the expected behavior.
23
+    * Begin by first ensuring the `main` method in your `ZipcodeRocks` class prints `"Zipcode Rocks!"` upon execution.  
23 24
     * Upon completion, open and run the `TestSuite` class to ensure that all tests have 100% success.
24 25
         * `TestSuite` is located in `src.test.java.com.zipcodewilmington.danny_do_better_exercises`
25 26
 

+ 10
- 0
src/main/java/com/zipcodewilmington/danny_do_better_exercises/ZipcodeRocks.java Ver fichero

@@ -0,0 +1,10 @@
1
+package com.zipcodewilmington.danny_do_better_exercises;
2
+
3
+/**
4
+ * Created by leon on 2/5/18.
5
+ */
6
+public class ZipcodeRocks {
7
+    public static void main(String[] args) {
8
+//         System.out.println("Zipcode Rocks!");
9
+    }
10
+}

BIN
target/classes/com/zipcodewilmington/danny_do_better_exercises/ZipcodeRocks.class Ver fichero