Skip to content

Commit

Permalink
DOC Markdown tables aren't supported
Browse files Browse the repository at this point in the history
  • Loading branch information
unode committed Jan 10, 2019
1 parent 8d978f2 commit 50d54aa
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions docs/sources/Language.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ version declaration:
## Module Import Statements

Following the version statement, optional import statements are allowed, using
the syntax `import "<MODULE>" version "<VERSION>". For example:
the syntax `import "<MODULE>" version "<VERSION>"`. For example:

import "batch" version "1.0"

Expand Down Expand Up @@ -160,15 +160,9 @@ between brackets. (e.g, x[10]).
To obtain a range, is required an identifier and two expressions separated by a
':' and between brackets. Example:

+============+================================================+
| Expression | Semantics |
+============+================================================+
| `x[:]` | from position 0 until length of variable x |
+------------+------------------------------------------------+
| `x[10:]` | from position 10 util length of variable x |
+------------+------------------------------------------------+
| `x[:10]` | from position 0 until 10 |
+------------+------------------------------------------------+
* `x[:]` - from position 0 until length of variable x
* `x[10:]` - from position 10 until length of variable x
* `x[:10]` - from position 0 until 10

## Conditionals

Expand Down

0 comments on commit 50d54aa

Please sign in to comment.