// Test calling WASI imports
functiongetRandomU64(){// Access the WASI random interface
constrandom=globalThis["wasi:random/random@0.2.6"]||globalThis["wasi:random/random"];if(!random){thrownewError("wasi:random/random not found");}returnrandom.getRandomU64();}