Skip to content

Commit f9d2d49

Browse files
committed
test using aleph-zero instead of infinity
1 parent 456134a commit f9d2d49

File tree

1 file changed

+8
-8
lines changed
  • S06-operator-overloading

1 file changed

+8
-8
lines changed

β€ŽS06-operator-overloading/term.t

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ plan 10;
44

55
{
66
package Foo {
7-
constant \term:<∞> = Inf;
8-
is ∞, Inf, "Can define \\term:<∞> as a constant";
7+
constant \term:<א₀> = Inf;
8+
is א₀, Inf, "Can define \\term:<א₀> as a constant";
99
}
10-
dies-ok { EVAL "∞" }, "constant \\term:<∞> really is scoped to package";
11-
is Foo::term:<∞>, Inf, "Constant available from package";
10+
dies-ok { EVAL "א₀" }, "constant \\term:<א₀> really is scoped to package";
11+
is Foo::term:<א₀>, Inf, "Constant available from package";
1212
}
1313

1414
{
1515
{
16-
my \term:<∞> = Inf;
17-
is ∞, Inf, "Can define \\term:<∞> as lexical variable";
18-
is EVAL('∞'),Inf, "\\term:<∞> works in EVAL";
16+
my \term:<א₀> = Inf;
17+
is א₀, Inf, "Can define \\term:<א₀> as lexical variable";
18+
is EVAL('א₀'),Inf, "\\term:<א₀> works in EVAL";
1919
}
20-
dies-ok { EVAL "∞" }, "my \\term:<∞> really is lexical";
20+
dies-ok { EVAL "א₀" }, "my \\term:<א₀> really is lexical";
2121
}
2222

2323
{

0 commit comments

Comments
Β (0)