Or with input list

untitled script pic (62)
Screenshot 2022-10-03 14.36.20|233x139.5

It takes a number of boolean inputs, and if any of them are true, then this reports true.

there's a block in the Variadic Reporters library that does that
image

(post deleted by author)

Oh! Awesome. Didn't know those existed. I'm running into weird errors with this anyway.

Probably because you're saying Boolean (Unevaluated) and that won't work with the simple COMBINE you have. If you want lazy evaluation you'll have to write it yourself as a recursion or a loop.

If your happy to accept this as false then
MD5b script pic

But if you want to be explicit
MD5b script pic (1)

Not not! I don't recall ever seeing that in Snap! before, although people do it all the time in Lisp. :~)

or=add
and=times

A boolean converter!

What about True or True being True, but 1 + 1 being 2? (yes it's been noticed before and Boole (I think) defined his + to give 1 if both inputs were 1.)

Any value that is not 0 is a true

I guess that could be said about what I was talking about, though it's more that non-0 values are turned into 1.

That’s why, I think.