aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/integers.tm18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/integers.tm b/test/integers.tm
index 6fdf809c..9fa5ffc2 100644
--- a/test/integers.tm
+++ b/test/integers.tm
@@ -13,15 +13,15 @@ func main()
>> 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)
+ # 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)
>> 3 and 2
= 2