Skip to content

Commit

Permalink
Reorder text to conform to output
Browse files Browse the repository at this point in the history
  • Loading branch information
eliben committed Dec 29, 2023
1 parent 0c31ca8 commit da72468
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/if-else/if-else.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func main() {

// Logical operators like `&&` and `||` are often
// useful in conditions.
if 7%2 == 0 || 8%2 == 0 {
if 8%2 == 0 || 7%2 == 0 {
fmt.Println("either 8 or 7 are even")
}

Expand Down
4 changes: 2 additions & 2 deletions examples/if-else/if-else.hash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
152124e287cd55e549bc29bcb8693bf260d1b3ab
hTOHdmUcUxz
fd9e491f9891e6a9593c2c1d640c1df113ce3ccf
RKgKzCe7qcF
6 changes: 3 additions & 3 deletions public/if-else

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit da72468

Please sign in to comment.