diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 12:41:13 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-05 12:41:13 -0400 |
| commit | 34d98f067eff63d9f10031f6b2b42103d2e3db51 (patch) | |
| tree | 44d97dcf23a2b2ae347b24d87fd6ea8fa414becd /test/reductions.tm | |
| parent | e91b53f07018608f2eba7d11748708b97b2cb4e9 (diff) | |
For big or arbitrarily big integers not known to be constant, do full
Int$plus(a,b) logic so it's definitely correct and doesn't error.
Diffstat (limited to 'test/reductions.tm')
| -rw-r--r-- | test/reductions.tm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reductions.tm b/test/reductions.tm index 72db3d1b..47f1612a 100644 --- a/test/reductions.tm +++ b/test/reductions.tm @@ -18,8 +18,8 @@ func main(): = Foo(x=0, y=-999) !! (or) and (and) have early out behavior: - >> (or) i == 3 for i in 99999999999999999 + >> (or) i == 3 for i in 9999999999999999999999999999 = yes - >> (and) i < 10 for i in 99999999999999999 + >> (and) i < 10 for i in 9999999999999999999999999999 = no |
