`where` with final result at end
Open
feature
- Dominant language
- Python
- Stars
- 4.4k
- Forks
- 142
- PR merge metrics
- No merged PRs in 30d
Description
Possible syntaxes:
```python
out = where:
x1 = a + b + c
x2 = x + y + z
x1 + x2
out = do:
x1 = a + b + c
x2 = x + y + z
x1 + x2
```
Which should compile to the equivalent of:
```python
out = x1 + x2 where:
x1 = a + b + c
x2 = x + y + z
```
Contributor guide
Assessment
This issue has not been assessed yet.