Open navjot369 opened 4 months ago
In the file "go.md", there is "for" wirtten that should be a "while" loop instead.
n := 0 x := 42 for n != x { n := guess() }
Replace "for" with a "while" keyword.
In golang, the while loop uses the "for" keyword
Description
In the file "go.md", there is "for" wirtten that should be a "while" loop instead.
Current code
Proposed change
Replace "for" with a "while" keyword.