apg-js-examples
Version:
Examples of using the suite of apg-js applications and libraries.
12 lines (11 loc) • 501 B
JavaScript
/* *************************************************************************************
* copyright: Copyright (c) 2021 Lowell D. Thomas, all rights reserved
* license: BSD-2-Clause (https://opensource.org/licenses/BSD-2-Clause)
* ********************************************************************************* */
// The basic demonstration.
(function minimal() {
const stats = false;
const trace = false;
const setup = require('./setup');
setup(stats, trace);
})();