valkyrie-ast 0.0.5

Strong typed abstract syntax tree of valkyrie language
Documentation



## For statement


```markdown
for `pattern` in `iterator` {
    `[body]`
}
else {
    `[otherwise]`
}
```

## Loop statement


```markdown
loop {
    `[body]`
}
```

## While statement


```markdown
while `condition` {
    `[body]`
}
else {
    `[otherwise]`
}
```