Skip to content

Commit

Permalink
Update example_versioned_docs/version-latest/06-ifelse.md
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Rybicki <chrisr@monada.co>
  • Loading branch information
boyney123 and Chriscbr authored Sep 11, 2024
1 parent 5df2505 commit cd3c94c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example_versioned_docs/version-latest/06-ifelse.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ if 8 % 2 == 0 || 7 % 2 == 0 {
log("either 8 or 7 are even");
}

let value:num = 9;
if(value < 0){
let value = 9;
if value < 0 {
log("${value} is negative");
} else if value < 10 {
log("${value} has 1 digit");
Expand Down

0 comments on commit cd3c94c

Please sign in to comment.