Even when I include the word export in front of the function it still doesn't work/
Event sheet 1, event 1, action 1: ReferenceError: loadVerses is not defined is the error I get
In main I put:
import { loadVerses } from "./selectedVerses.js";
In the file selectedVerses.js I have:
export function loadVerses() {
globalThis.sVerses = [ ...
I am missing something else. I hope to get over these hurdles so i can just tell the thing what I want it to do.