File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ my $map = (effective => 42, factual => 666).Map;
20
20
my $ hash = (global => 77 , 999 => " happiness" ). Hash ;
21
21
my $ objh = Hash [Any ,Any ]. new ((ideas => 56 , 13 => " jocular" ));
22
22
my $ list = <the quick brown fox >;
23
+ my $ bigintrange = 0 .. 10 ** 42 ;
23
24
my @ elem =
24
25
" afraid" , $ s ,
25
26
" afraid" , $ sh ,
@@ -32,6 +33,7 @@ my @elem =
32
33
" ideas" , $ objh ,
33
34
13 , $ objh ,
34
35
" quick" , $ list ,
36
+ 10 ** 42 , $ bigintrange
35
37
;
36
38
37
39
# Things we need to check for not being an element of. Uses the string
@@ -68,6 +70,7 @@ my @notelem =
68
70
do { my % o := : { a => 42 }; % o <a >: delete; % o },
69
71
$ list ,
70
72
List . new ,
73
+ $ bigintrange => 10 ** 42 + 1
71
74
;
72
75
73
76
plan 2 * (2 * @ elem / 2 + 2 * @ notelem ) + 1 * (2 * @ elem / 2 + 2 * @ notelem );
You can’t perform that action at this time.
0 commit comments