aboutsummaryrefslogtreecommitdiff
path: root/test/integers.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-03 13:19:41 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-03 13:19:41 -0400
commit64143f0a131a053414e4b73c17bff994522b11c2 (patch)
tree2545507fde623f8846bf183388acdbb0234b5e65 /test/integers.tm
parent5feecff9d93522002c74a1423d138c2aa8bc150d (diff)
Syntax overhaul (comments back to `#`, print statments to `!!`),
using `$/.../` for patterns and using a DSL for patterns
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 5743cbb2..e15b9473 100644
--- a/test/integers.tm
+++ b/test/integers.tm
@@ -79,7 +79,7 @@ func main():
for in 20:
>> n := Int.random(-999999, 999999)
>> d := Int.random(-999, 999)
- //! n=$n, d=$d:
+ !! n=$n, d=$d:
>> (n/d)*d + (n mod d) == n
= yes