-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated keywords and standard library.
- Loading branch information
Unknown
authored and
Unknown
committed
Oct 31, 2018
1 parent
b93eae9
commit c312775
Showing
5 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[Home](https://puckowski.github.io/concert/) <span> </span> [Keywords](https://puckowski.github.io/concert/keywords.html) | ||
|
||
# Keyword continue | ||
|
||
## Description | ||
|
||
Jump to start of enclosing loop. | ||
|
||
## Example | ||
|
||
```cpp | ||
call seed_random; | ||
|
||
while 1 == 1; | ||
int rand; | ||
call get_random -> rand; | ||
rand = rand % 100; | ||
|
||
if rand < 50; | ||
# Jump to while 1 == 1; | ||
continue; | ||
else; | ||
break; | ||
end; | ||
end; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters