summaryrefslogtreecommitdiff
path: root/modules/script/console.js
blob: d80b699c1a26e3c82c0bb766f297c6887babbb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
// SPDX-FileCopyrightText: 2021 Evan Welsh <contact@evanwelsh.com>

/* exported Repl, interact */

var Repl = null;

function interact() {
    const repl = new Repl();

    repl.start();
}