Skip to content

Commit

Permalink
Update examples.js (#59)
Browse files Browse the repository at this point in the history
Minor cleanup to FizzBuzz example
  • Loading branch information
alokmenghrajani authored Feb 10, 2024
1 parent 42d167b commit cc293e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adana-playground/examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const EXAMPLES = [
script: `num = 100
count = 0
text = ""
while count == 0 || count <= num {
while count <= num {
if count % 3 == 0 && count % 5 == 0 {
# Fizz Buzz
text = count + " = FizzBuzz"
Expand Down

0 comments on commit cc293e2

Please sign in to comment.