diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 19:20:07 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-04-06 19:20:07 -0400 |
| commit | 1d2e55f53dfab5153dbfd0c03f28cd9daedb3b77 (patch) | |
| tree | aa1c21191800467abe0b3d16cb6c2a0c2e4587f9 /test/iterators.tm | |
| parent | bc93dea8186168aa015b05a615bc1873173393b5 (diff) | |
Allow uninitialized variables when there's a sensible empty value
(defaults to empty/zero value)
Diffstat (limited to 'test/iterators.tm')
| -rw-r--r-- | test/iterators.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/iterators.tm b/test/iterators.tm index 1816fd7a..08382cff 100644 --- a/test/iterators.tm +++ b/test/iterators.tm @@ -25,7 +25,7 @@ func main() = ["AB", "BC", "CD"] do - result : @[Text] = @[] + result : @[Text] for foo in pairwise(values) result.insert("$(foo.x)$(foo.y)") >> result[] |
