Open meevee98 opened 4 years ago
While is one of the control flow statements that consists in the repetition of a block of instruction while the given Boolean condition is true.
This is the syntax of the while loop in the PNP language:
enquanto <condition> faca <block of instructions> fim
The Java implementation that it's been refactored already have an implementation of the while statement. We have to refactor it to Kotlin too.
While is one of the control flow statements that consists in the repetition of a block of instruction while the given Boolean condition is true.
This is the syntax of the while loop in the PNP language:
The Java implementation that it's been refactored already have an implementation of the while statement. We have to refactor it to Kotlin too.