I've noticed that calling slice on an array or tuple causes new memory to be allocated for the returned tuple. This may cause some performance penalty when working with big data sets.
Since the returned tuple is read-only, is it possible to reuse the existing memory for it instead of making a copy, or this would require some big changes in the Janet VM?