I am trying to obtain the umptieth element of an array:
my @lazy-array = lazy 1, 11, 121 ... 10**100;
say @lazy-array[10**50];
This yields
Cannot unbox 167 bit wide bigint into native integer
Same problem if I assign it to a variable. This does not seem to be reflected in the documentation, and wonder if it's a feature or a bug. Also, what would be the correct way of acessing those positions (other than iterating)