diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 17:49:05 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 17:49:05 -0400 |
| commit | 0815de981c683cac7dbac082ee14c11894089f31 (patch) | |
| tree | 4b97d4fadabc508b3517d1f9ecb35acc75af53a7 /test | |
| parent | 994b4d6a620624a4467e1d3a8ddaedc236541ac0 (diff) | |
Remove dead code
Diffstat (limited to 'test')
| -rw-r--r-- | test/integers.tm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/integers.tm b/test/integers.tm index d6e68066..1b1f7569 100644 --- a/test/integers.tm +++ b/test/integers.tm @@ -11,16 +11,6 @@ func main() assert 1 << 10 == 1024 - # say("Signed and unsigned bit shifting:") - # >> Int64(-2) << 1 - # = Int64(-4) - # >> Int64(-2) <<< 1 - # = Int64(-4) - # >> Int64(-2) >> 1 - # = Int64(-1) - # >> Int64(-2) >>> 1 - # = Int64(9223372036854775807) - assert (3 and 2) == 2 assert (3 or 4) == 7 @@ -71,8 +61,6 @@ func main() assert (0).next_prime() == 2 assert (7).next_prime() == 11 - #>> (11).prev_prime() - #= 7 assert (and: p.is_prime() for p in [ 2, 3, 5, 7, 137372146048179869781170214707, |
