2024-06-06 22:47:04 +00:00
|
|
|
import init from "./out.mjs"
|
|
|
|
|
|
|
|
const mod = await init()
|
|
|
|
|
|
|
|
export function run (source) {
|
|
|
|
const result = mod.ludus(source).value
|
2024-06-07 15:42:11 +00:00
|
|
|
console.log(result)
|
2024-06-06 22:47:04 +00:00
|
|
|
return JSON.parse(result)
|
|
|
|
}
|