Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bc4a189

Browse files
committed
Mark and and or as supported and unary - unsupported
1 parent 5db0f07 commit bc4a189

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

doc/dev-intro.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here's a summary of what should work:
1515
* `List[...]`.
1616
* `None` as return type
1717
* Some integer operations:
18-
* Basic integer arithmetic: + - * // %
18+
* Basic integer arithmetic: `+` `-` `*` `//` `%` (but no unary `-`)
1919
* Integer comparisons.
2020
* Some list operations:
2121
* `[e, ...]` (construct list)
@@ -29,6 +29,7 @@ Here's a summary of what should work:
2929
* While statement.
3030
* Expression statement.
3131
* Return statement.
32+
* `and` and `or` in a boolean context.
3233
* `for x in range(n): ...` (for convenience only).
3334

3435
## High-level Overview

0 commit comments

Comments
 (0)