dina-agi
Version:
DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.
18 lines • 365 B
JavaScript
var n1 = 'number';
var n2 = 'number, number';
export function notNumber(x) {
return !x;
}
notNumber.signature = n1;
export function orNumber(x, y) {
return !!(x || y);
}
orNumber.signature = n2;
export function xorNumber(x, y) {
return !!x !== !!y;
}
xorNumber.signature = n2;
export function andNumber(x, y) {
return !!(x && y);
}
andNumber.signature = n2;