Skip to content

Commit

Permalink
Updated keywords and standard library.
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown authored and Unknown committed Oct 31, 2018
1 parent b93eae9 commit c312775
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 5 deletions.
5 changes: 3 additions & 2 deletions keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@
|end |end a function, while loop, try/catch block, or if statement |[end details](keywords/keyword_end.md) |
|catch |catch an exception after a try block |[catch details](keywords/keyword_catch.md) |
|try |try executing potentially unsafe code |[try details](keywords/keyword_try.md) |
|break |seek to next end keyword |[break details](keywords/keyword_break.md) |
|break |break enclosing loop |[break details](keywords/keyword_break.md) |
|const |const value declaration |[const details](keywords/keyword_const.md) |
|else |if statement alternative branch declaration |[else details](keywords/keyword_else.md) |
|system |execute system command |[system details](keywords/keyword_system.md) |
|exec |execute code |[exec details](keywords/keyword_exec.md) |
|instanceof |determine the type of a variable |[instanceof details](keywords/keyword_instanceof.md)|
|exit |terminate script or exit program immediately |[exit details](keywords/keyword_exit.md) |
|new |create a new struct |[new details](keywords/keyword_new.md) |
|struct |define the template for a struct |[struct details](keywords/keyword_struct.md) |
|struct |define the template for a struct |[struct details](keywords/keyword_struct.md) |
|continue |restart enclosing loop |[continue details](keywords/keyword_continue.md) |
26 changes: 26 additions & 0 deletions keywords/keyword_continue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[Home](https://puckowski.github.io/concert/) <span>&emsp;</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;
```
2 changes: 1 addition & 1 deletion standard_library/io_library.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library.html)
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library/standard_library.html)

# Input output library

Expand Down
2 changes: 1 addition & 1 deletion standard_library/math_library.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library.html)
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library/standard_library.html)

# Math library

Expand Down
2 changes: 1 addition & 1 deletion standard_library/string_library.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library.html)
[Home](https://puckowski.github.io/concert/) <span>&emsp;</span> [Standard library](https://puckowski.github.io/concert/standard_library/standard_library.html)

# String library

Expand Down

0 comments on commit c312775

Please sign in to comment.