Update 06-Housekeeping.md

This commit is contained in:
Joe
2019-11-21 10:02:36 +08:00
committed by GitHub
parent e2e33c6a1b
commit a12aa7cd26

View File

@@ -422,11 +422,11 @@ class Banana {
}
}
public class BananaPeel {
public static void main(String[] args) [
public static void main(String[] args) {
Banana a = new Banana(), b = new Banana();
a.peel(1);
b.peel(2);
]
}
}
```