aboutsummaryrefslogtreecommitdiff
path: root/test/integers.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 13:40:17 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 13:40:17 -0400
commit59845e610f2c90474f34079d27b5f1e07071ded4 (patch)
tree1066ab6c5c6e6620adda6ac4575703b9d4bf0a0a /test/integers.tm
parent95633b1cc2da5294d9aec8c7eb9fca9a15c1a8bf (diff)
Deprecate `!!` print statement
Diffstat (limited to 'test/integers.tm')
-rw-r--r--test/integers.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integers.tm b/test/integers.tm
index 04256c88..76e55ca1 100644
--- a/test/integers.tm
+++ b/test/integers.tm
@@ -17,7 +17,7 @@ func main():
>> 1 << 10
= 1024
- !! Signed and unsigned bit shifting:
+ say("Signed and unsigned bit shifting:")
>> Int64(-2) << 1
= Int64(-4)
>> Int64(-2) <<< 1