diff --git a/recipe.md b/recipe.md index a8b51a4d..1f96c5b2 100644 --- a/recipe.md +++ b/recipe.md @@ -9,4 +9,9 @@ ## Instructions: 1. Preheat the oven to 350°F (175°C). 2. In a large bowl, whisk together the flour, sugar, and cocoa powder. -3. ... \ No newline at end of file +3. ... + +## Additional Directions by alice +1. git where is bob +2. ok +3. \ No newline at end of file diff --git a/src/DataTypes.java b/src/DataTypes.java index 4f807c1f..eebcb595 100644 --- a/src/DataTypes.java +++ b/src/DataTypes.java @@ -4,7 +4,7 @@ public class DataTypes { // TODO TASK 1: fix this code so that it passes the test in DataTypesTest.java public static long sum(List numbers) { - int s = 0; + long s = 0; // below is a "foreach" loop which iterates through numbers for (int x : numbers) { s += x;