diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-04 17:06:09 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-04 17:06:09 -0400 |
| commit | 0b8074154e2671691050bdb3bcb33245625a056c (patch) | |
| tree | 1410e0c4e05c6372e876cd08f16d117e12868f41 /docs/reductions.md | |
| parent | fadcb45baf1274e06cfe37b87655b9146aa52874 (diff) | |
First working compile of refactor to add explicit typing to declarations
and support untyped empty collections and `none`s
Diffstat (limited to 'docs/reductions.md')
| -rw-r--r-- | docs/reductions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reductions.md b/docs/reductions.md index 58cfa314..959d9701 100644 --- a/docs/reductions.md +++ b/docs/reductions.md @@ -18,7 +18,7 @@ a runtime check and error if there's a null value, or you can use `or` to provide a fallback value: ```tomo -nums := [:Int] +nums : [Int] = [] sum := (+: nums) >> sum |
