Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@kefniark
Copy link
Contributor

@kefniark kefniark commented May 5, 2021

Description

  • Change the For syntax (use the in keyword)
for a := [1,2,3,4,5,6,7,8] {
  @print("{a}")
}
// into
for a in [1,2,3,4,5,6,7,8] {
  @print("{a}")
}
  • Add the Until Loop
for counter < 10 {
  counter += 1
}
  • Add the Infinite Loop
for {
  counter += 1
}

@sonarqubecloud
Copy link

sonarqubecloud bot commented May 5, 2021

Kudos, SonarCloud Quality Gate passed!

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@kefniark kefniark merged commit 3773b64 into develop May 5, 2021
@kefniark kefniark deleted the feature/moreLoops branch May 9, 2021 07:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants