Takes any number of numbers as inputs (use the left and right arrowheads to adjust the number of input slots) and reports the result of adding them all, so (SUM (4) (100) (8)) reports 112.
pt:a soma de _ ca:suma _ 1
Takes any number of numbers as inputs (use the left and right arrowheads to adjust the number of input slots) and reports the result of multiplying them all, so (PRODUCT (4) (100) (8)) reports 3200.
pt:o produto de _ ca:producte _ 1
Takes any number of Boolean (true/false) inputs (use the left and right arrowheads to adjust the number of input slots) and reports TRUE only if all of the inputs are TRUE, otherwise FALSE. Like AND but for multiple inputs.
pt:todas as afirmações _ são verdadeiras ca:tots _ ? 1
Takes any number of Boolean (true/false) inputs (use the left and right arrowheads to adjust the number of input slots) and reports TRUE if at least one input is TRUE, otherwise FALSE.
pt:alguma das afirmações _ é verdadeira ca:qualsevol _ ? 1
Takes any number of numbers as inputs (use the left and right arrowheads to adjust the number of input slots) and reports the smallest of them, so (MINIMUM (4) (100) (8)) reports 4.
pt:o produto de _ ca:mínim _ 1
Takes any number of numbers as inputs (use the left and right arrowheads to adjust the number of input slots) and reports the largest of them, so (MAXIMUM (4) (100) (8)) reports 100.
pt:o produto de _ ca:màxim _ 1