# Wasm tests The .wasm files are builds from externals AS source codes and export a default runtime. ## Sort code ```ts export function sortBuffer(a: StaticArray): void { a = a.sort(); } ```