Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
and
or
-
1 parent 5db0f07 commit bc4a189Copy full SHA for bc4a189
1 file changed
doc/dev-intro.md
@@ -15,7 +15,7 @@ Here's a summary of what should work:
15
* `List[...]`.
16
* `None` as return type
17
* Some integer operations:
18
- * Basic integer arithmetic: + - * // %
+ * Basic integer arithmetic: `+` `-` `*` `//` `%` (but no unary `-`)
19
* Integer comparisons.
20
* Some list operations:
21
* `[e, ...]` (construct list)
@@ -29,6 +29,7 @@ Here's a summary of what should work:
29
* While statement.
30
* Expression statement.
31
* Return statement.
32
+* `and` and `or` in a boolean context.
33
* `for x in range(n): ...` (for convenience only).
34
35
## High-level Overview
0 commit comments