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 fc0c66b commit 0def6f0Copy full SHA for 0def6f0
src/recursion/counting_down.md
@@ -8,7 +8,7 @@ number one lower than you were given. if it isn't you are done.
8
9
```java
10
void countDown(int x) {
11
- if (x > 0) {
+ if (x <= 0) {
12
IO.println("DONE");
13
}
14
else {
0 commit comments