INNER CODE UNIT · JavaScript
c
FStarLang/karamel · krmllib/js/loader.js:84
let c = m8[ofs+i+j];
if (32 <= c && c < 128)
buf += String.fromCharCode(c);
else
buf += ".";
}
buf += "\n";
i += 32;
}
my_print(buf);
}
/******************************************************************************/
/* Implementations of the karamel runtime support library */
/******************************************************************************/
function stringAtAddr(mem, addr) {
let m8 = new Uint8Array(mem.buffer);