Send a constant to its output value
.
The value to send as an output.
var tool = Matis.tools.Constant(27);
tool.exec(
{void: "any kind on input"},
function(outputs) {
if (outputs.value !== 27) {
throw "IMPOSSIBLE!";
}
}
);