syndicate-js/examples/how-to-use-loader/protocol.js

12 lines
297 B
JavaScript
Raw Normal View History

2023-12-10 17:54:01 +00:00
/// SPDX-License-Identifier: GPL-3.0-or-later
/// SPDX-FileCopyrightText: Copyright © 2016-2023 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
assertion type BoxState(value);
message type SetBox(newValue);
const N = 100000;
exports.BoxState = BoxState;
exports.SetBox = SetBox;
exports.N = N;