Multiple operations in an Arithmetic combinator
Posted: Tue Jul 14, 2026 5:21 am
TL;DR
I want to do multiple arithmetic operations in one combinatorWhat?
I want to put multiple signals into one combinator and do sequential arithmetic operations on those signals including their interactions with each other. Each line's output will give the input count of the first signal of that line. Subsequent uses of that signal in later operations will use the new input count. For instance, if W=4:- W + 7
- W * 2
Why?
To save space and make combinators a bit more understandable by keeping multiple operations houses within a single combinator.Additional concerns
I think an additional output option should be added, "As". Imagine the following:- T + 4
- W - 5000
- T / W