export function ptrToStr(start: usize, end: usize): string { const size = end - start; const out = __new(size, idof()); memory.copy(out, start, size); return changetype(out); }