Skip to content

Commit

Permalink
Merge pull request #6535 from roc-lang/nodejs-example-fix
Browse files Browse the repository at this point in the history
fix nodejs example
  • Loading branch information
Anton-4 authored Feb 25, 2024
2 parents 2681d81 + a744536 commit f55df4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/nodejs-interop/wasm/hello.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require('fs');
const { TextDecoder } = require('util');

const wasmFilename = './roc-app.wasm';
const wasmFilename = './main.wasm';
const moduleBytes = fs.readFileSync(wasmFilename);
const wasmModule = new WebAssembly.Module(moduleBytes);

Expand Down

0 comments on commit f55df4b

Please sign in to comment.